Re: [Wicket-user] Wicket 1.2.1 available

2006-07-25 Thread Igor Vaynberg
not to mention model cloning-IgorOn 7/25/06, Johan Compagner [EMAIL PROTECTED] wrote:
This is not really only for clustering..It is also for restarts of the server without loosing sessions. 
You just should have that setting on when developing and try to make everything serializeable because that will in the end help you in either case.
johanOn 7/24/06, Igor Vaynberg 
[EMAIL PROTECTED] wrote:

are you in development mode?if so this is a debug feature to help you find potential problems when your app will run clustered. it checks your component graphs to make sure everything is serializable as it has to be for clustering
if you are not going to cluster you can turn this off by doing getDebugSettings() in your application.init()in deployment mode this setting is turned off by default
-Igor
On 7/24/06, samyem [EMAIL PROTECTED]
 wrote:

As soon as upgrading to the new version, I am getting these types of errorsall over the place:WicketMessage: Internal error cloning object. Make sure all dependentobjects implement Serializable. Class:
com.wsi.mm.ui.shippingrates.ShippingRateGroupPageRoot cause:java.io.NotSerializableException:com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2at java.io.ObjectOutputStream.writeObject0


(ObjectOutputStream.java:1075)atjava.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)atjava.io.ObjectOutputStream.writeOrdinaryObject


(ObjectOutputStream.java:1284)at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)atjava.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)...atwicket.protocol.http.HttpSessionStore.setAttribute


(HttpSessionStore.java:57) at wicket.Session.setAttribute(Session.java:926) at wicket.PageMap.put(PageMap.java:526) at wicket.Session.touch(Session.java:714) at wicket.Page.renderPage(Page.java


:422) atwicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:226)...Complete stack:wicket.WicketRuntimeException: Internal error cloning object. Make sure all
dependent objects implement Serializable. Class:com.wsi.mm.ui.shippingrates.ShippingRateGroupPageatwicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)at wicket.Session.setAttribute


(Session.java:926)It works fine with Wicket 1.2 release, but no more with 1.2.1. Please help!--View this message in context: 


http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531Sent from the Wicket - User forum at 

Nabble.com.-
Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share youropinions on IT  business topics through brief surveys -- and earn cash


http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list

Wicket-user@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/wicket-user


-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list

Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2.1 available

2006-07-25 Thread Igor Vaynberg
i kept trying to log in but my browser would just spin its wheel :)-IgorOn 7/25/06, Gwyn Evans [EMAIL PROTECTED]
 wrote:On 25/07/06, Igor Vaynberg 
[EMAIL PROTECTED] wrote: wiki is too slow for me to be usable right now,Out of interest, what sort of delays were you seeing  was this aone-off or does it normally seem too slow?
/Gwyn-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cashhttp://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Martijn Dashorst
The Wicket project has released the maintenance release Wicket 1.2.1. Wicket is a Java component based web application framework licensed under the open source Apache 2 license. Wicket allows Java developers to create highly dynamic web applications using plain Java and HTML.
This maintenance release fixes several bugs, and introduces some new features, amongst others the long awaited Portlet (JSR-168) support. Due to time constraints, the portlet examples have not been released yet. You can find them in SVN until the time has been found to build a proper release for it. The portlet support is still young and there may be some incompatibilities to be found between various portlet containers. Here is an (incomplete) list of bug fixes:
For improved reliability, instead of utilizing cookies and falling back on a quirky JavasScript, we now use window.name to detect whether we are in sync with the proper page map.
AjaxFormSubmitBehavior no longer incorrectly calls onSubmit() if an error occured during form processing (this aligns it with Button.onSubmit() semantic), instead a new onError() method will be called to allow for error related ajax target processing
Added IDebugSettings.serializeSessionAttributes instead of relying on logger set to debug mode for the session storeSeveral bug fixes to the Palette componentProperty model will now correctly work when chained with a compound model
Fix for firefox not parsing xml-responses after the pages document.domain has been changed to the base-domain.Implemented a workaround for an inconsistency between different servlet containers and a bug in the servlet spec which does not seem to state what should happen with empty valued request parameters. This caused Wicket to have some problems (like a failing required test) with Jetty 6.
Implemented anchors on Links. You can either provide a component that is to be used for getting the anchor, or provide an anchor in the href attribute of a tags.Portlet (JSR-168) supportAjax Checkbox now uses onclick instead of onchange which works correctly
Replace GPL licensed diff util with a Apache licensed oneRedirect URLs sometimes were not being encoded for redirects, preventing 'cookie-less' operation (most notably when used with redirectTo). Fixed by always encoding redirects low-down; encoding multiple times has no effect.
Package resources do not have to be pre-registered anymore. When a shared resource is not found, Wicket tries to find a corresponding package resource, and if it finds one, registers it lazily. This fixes quite a few uncomfortable situations, and makes writing custom components easier. Package resources may be blocked by utilizing IPackageResourceGuard (IResourceSettings). By default everything except files with the extension 'html', 'class', 'java', and 'properties' are served. Fixes amongst others bug 1490949. All methods that took Pattern are now deprecated and will be removed in 
2.0.Fixed setting the shared resource path so that it strips any jsession id (or whatever there may be between [path];[whatever][?(optional)] which was a problem when a browser doesn't support cookiesAdded rating component to extensions
Added Component.replaceWith(Component) to provide better readability and better context for errors that arise from replace actionsThis release should be a drop in release to the 1.2 version. However we encourage you to properly test your application before pushing Wicket 
1.2.1 into production. The Wicket team wishes to thank everyone that has worked with us to find and solve those nasty bugs. We hope that you will enjoy this release as much as we do. We thank our users for their continued support.
-- Download Wicket 1.2.1 now! Write Ajax applications without touching _javascript_!-- http://wicketframework.org
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread samyem

As soon as upgrading to the new version, I am getting these types of errors
all over the place:

WicketMessage: Internal error cloning object. Make sure all dependent
objects implement Serializable. Class:
com.wsi.mm.ui.shippingrates.ShippingRateGroupPage

Root cause:

java.io.NotSerializableException:
com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1075)
at
java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)
at
java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1284)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
at
java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
...
at
wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:57)
 at wicket.Session.setAttribute(Session.java:926)
 at wicket.PageMap.put(PageMap.java:526)
 at wicket.Session.touch(Session.java:714)
 at wicket.Page.renderPage(Page.java:422)
 at
wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:226)
...
Complete stack:

wicket.WicketRuntimeException: Internal error cloning object. Make sure all
dependent objects implement Serializable. Class:
com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
at
wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)
at wicket.Session.setAttribute(Session.java:926)



It works fine with Wicket 1.2 release, but no more with 1.2.1. Please help!
-- 
View this message in context: 
http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
Sent from the Wicket - User forum at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Igor Vaynberg
are you in development mode?if so this is a debug feature to help you find potential problems when your app will run clustered. it checks your component graphs to make sure everything is serializable as it has to be for clustering
if you are not going to cluster you can turn this off by doing getDebugSettings() in your application.init()in deployment mode this setting is turned off by default-Igor
On 7/24/06, samyem [EMAIL PROTECTED] wrote:
As soon as upgrading to the new version, I am getting these types of errorsall over the place:WicketMessage: Internal error cloning object. Make sure all dependentobjects implement Serializable. Class:
com.wsi.mm.ui.shippingrates.ShippingRateGroupPageRoot cause:java.io.NotSerializableException:com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2at java.io.ObjectOutputStream.writeObject0
(ObjectOutputStream.java:1075)atjava.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)atjava.io.ObjectOutputStream.writeOrdinaryObject
(ObjectOutputStream.java:1284)at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)atjava.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)...atwicket.protocol.http.HttpSessionStore.setAttribute
(HttpSessionStore.java:57) at wicket.Session.setAttribute(Session.java:926) at wicket.PageMap.put(PageMap.java:526) at wicket.Session.touch(Session.java:714) at wicket.Page.renderPage(Page.java
:422) atwicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:226)...Complete stack:wicket.WicketRuntimeException: Internal error cloning object. Make sure all
dependent objects implement Serializable. Class:com.wsi.mm.ui.shippingrates.ShippingRateGroupPageatwicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)at wicket.Session.setAttribute
(Session.java:926)It works fine with Wicket 1.2 release, but no more with 1.2.1. Please help!--View this message in context: 
http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531Sent from the Wicket - User forum at Nabble.com.-
Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share youropinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread samyem

Thanks. That solved my problem for now.
-- 
View this message in context: 
http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472704
Sent from the Wicket - User forum at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Frank Bille Jensen
Perhaps it should be a FAQ?


On Mon, 2006-07-24 at 11:12 -0700, Igor Vaynberg wrote:
 are you in development mode?
 
 if so this is a debug feature to help you find potential problems when
 your app will run clustered. it checks your component graphs to make
 sure everything is serializable as it has to be for clustering 
 
 if you are not going to cluster you can turn this off by doing
 getDebugSettings() in your application.init()
 
 in deployment mode this setting is turned off by default
 
 -Igor
 
 
 On 7/24/06, samyem [EMAIL PROTECTED] wrote:
 
 As soon as upgrading to the new version, I am getting these
 types of errors
 all over the place:
 
 WicketMessage: Internal error cloning object. Make sure all
 dependent
 objects implement Serializable. Class: 
 com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
 
 Root cause:
 
 java.io.NotSerializableException:
 com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2
 at java.io.ObjectOutputStream.writeObject0
 (ObjectOutputStream.java:1075)
 at
 
 java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
 at
 
 java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)
 at
 java.io.ObjectOutputStream.writeOrdinaryObject
 (ObjectOutputStream.java:1284)
 at
 java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
 at
 
 java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
 ...
 at
 wicket.protocol.http.HttpSessionStore.setAttribute
 (HttpSessionStore.java:57)
  at wicket.Session.setAttribute(Session.java:926)
  at wicket.PageMap.put(PageMap.java:526)
  at wicket.Session.touch(Session.java:714)
  at wicket.Page.renderPage(Page.java :422)
  at
 
 wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:226)
 ...
 Complete stack:
 
 wicket.WicketRuntimeException: Internal error cloning object.
 Make sure all 
 dependent objects implement Serializable. Class:
 com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
 at
 
 wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)
 at wicket.Session.setAttribute (Session.java:926)
 
 
 
 It works fine with Wicket 1.2 release, but no more with 1.2.1.
 Please help!
 --
 View this message in context:
 http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
 Sent from the Wicket - User forum at Nabble.com.
 
 
 
 - 
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance
 to share your
 opinions on IT  business topics through brief surveys -- and
 earn cash
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___ Wicket-user mailing list 
 Wicket-user@lists.sourceforge.net 
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Eelco Hillenius
Yeah, that would make sense. We have one on the WIKI don't we?

Eelco


On 7/24/06, Frank Bille Jensen [EMAIL PROTECTED] wrote:
 Perhaps it should be a FAQ?


 On Mon, 2006-07-24 at 11:12 -0700, Igor Vaynberg wrote:
  are you in development mode?
 
  if so this is a debug feature to help you find potential problems when
  your app will run clustered. it checks your component graphs to make
  sure everything is serializable as it has to be for clustering
 
  if you are not going to cluster you can turn this off by doing
  getDebugSettings() in your application.init()
 
  in deployment mode this setting is turned off by default
 
  -Igor
 
 
  On 7/24/06, samyem [EMAIL PROTECTED] wrote:
 
  As soon as upgrading to the new version, I am getting these
  types of errors
  all over the place:
 
  WicketMessage: Internal error cloning object. Make sure all
  dependent
  objects implement Serializable. Class:
  com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
 
  Root cause:
 
  java.io.NotSerializableException:
  com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2
  at java.io.ObjectOutputStream.writeObject0
  (ObjectOutputStream.java:1075)
  at
  
  java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
  at
  
  java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)
  at
  java.io.ObjectOutputStream.writeOrdinaryObject
  (ObjectOutputStream.java:1284)
  at
  
  java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
  at
  
  java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
  ...
  at
  wicket.protocol.http.HttpSessionStore.setAttribute
  (HttpSessionStore.java:57)
   at wicket.Session.setAttribute(Session.java:926)
   at wicket.PageMap.put(PageMap.java:526)
   at wicket.Session.touch(Session.java:714)
   at wicket.Page.renderPage(Page.java :422)
   at
  
  wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:226)
  ...
  Complete stack:
 
  wicket.WicketRuntimeException: Internal error cloning object.
  Make sure all
  dependent objects implement Serializable. Class:
  com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
  at
  
  wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)
  at wicket.Session.setAttribute (Session.java:926)
  
 
 
  It works fine with Wicket 1.2 release, but no more with 1.2.1.
  Please help!
  --
  View this message in context:
  http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
  Sent from the Wicket - User forum at Nabble.com.
 
 
  
  -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance
  to share your
  opinions on IT  business topics through brief surveys -- and
  earn cash
  
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
  -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to share your
  opinions on IT  business topics through brief surveys -- and earn cash
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___ Wicket-user mailing list 
  Wicket-user@lists.sourceforge.net 
  https://lists.sourceforge.net/lists/listinfo/wicket-user


 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash

Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Frank Bille Jensen
And on wicketframework.org... Perhaps some links between them?

On Mon, 2006-07-24 at 22:09 +0200, Eelco Hillenius wrote:
 Yeah, that would make sense. We have one on the WIKI don't we?
 
 Eelco
 
 
 On 7/24/06, Frank Bille Jensen [EMAIL PROTECTED] wrote:
  Perhaps it should be a FAQ?
 
 
  On Mon, 2006-07-24 at 11:12 -0700, Igor Vaynberg wrote:
   are you in development mode?
  
   if so this is a debug feature to help you find potential problems when
   your app will run clustered. it checks your component graphs to make
   sure everything is serializable as it has to be for clustering
  
   if you are not going to cluster you can turn this off by doing
   getDebugSettings() in your application.init()
  
   in deployment mode this setting is turned off by default
  
   -Igor
  
  
   On 7/24/06, samyem [EMAIL PROTECTED] wrote:
  
   As soon as upgrading to the new version, I am getting these
   types of errors
   all over the place:
  
   WicketMessage: Internal error cloning object. Make sure all
   dependent
   objects implement Serializable. Class:
   com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
  
   Root cause:
  
   java.io.NotSerializableException:
   com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2
   at java.io.ObjectOutputStream.writeObject0
   (ObjectOutputStream.java:1075)
   at
   
   java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
   at
   
   java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)
   at
   java.io.ObjectOutputStream.writeOrdinaryObject
   (ObjectOutputStream.java:1284)
   at
   
   java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
   at
   
   java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
   ...
   at
   wicket.protocol.http.HttpSessionStore.setAttribute
   (HttpSessionStore.java:57)
at wicket.Session.setAttribute(Session.java:926)
at wicket.PageMap.put(PageMap.java:526)
at wicket.Session.touch(Session.java:714)
at wicket.Page.renderPage(Page.java :422)
at
   
   wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:226)
   ...
   Complete stack:
  
   wicket.WicketRuntimeException: Internal error cloning object.
   Make sure all
   dependent objects implement Serializable. Class:
   com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
   at
   
   wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)
   at wicket.Session.setAttribute (Session.java:926)
   
  
  
   It works fine with Wicket 1.2 release, but no more with 1.2.1.
   Please help!
   --
   View this message in context:
   
   http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
   Sent from the Wicket - User forum at Nabble.com.
  
  
   
   -
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance
   to share your
   opinions on IT  business topics through brief surveys -- and
   earn cash
   
   http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
   -
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance to share 
   your
   opinions on IT  business topics through brief surveys -- and earn cash
   http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___ Wicket-user mailing list 
   Wicket-user@lists.sourceforge.net 
   https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
  -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to share your
  opinions on IT  business topics through brief surveys -- and earn cash
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 

Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Eelco Hillenius
And to fix that particular problem, look for the second annonymous
class defined in
com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel. Make sure
that is serializable so that if you would decide to run in clustered
mode some day, or e.g. you want to save sessions to be picked up after
a restart, everything will keep working.

Eelco


On 7/24/06, samyem [EMAIL PROTECTED] wrote:

 Thanks. That solved my problem for now.
 --
 View this message in context: 
 http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472704
 Sent from the Wicket - User forum at Nabble.com.


 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Marty Backe
Done. Captured in the FAQ: http://www.wicket-wiki.org.uk/wiki/index.php/FAQs

Eelco Hillenius wrote:
 Yeah, that would make sense. We have one on the WIKI don't we?

 Eelco


 On 7/24/06, Frank Bille Jensen [EMAIL PROTECTED] wrote:
   
 Perhaps it should be a FAQ?


 On Mon, 2006-07-24 at 11:12 -0700, Igor Vaynberg wrote:
 
 are you in development mode?

 if so this is a debug feature to help you find potential problems when
 your app will run clustered. it checks your component graphs to make
 sure everything is serializable as it has to be for clustering

 if you are not going to cluster you can turn this off by doing
 getDebugSettings() in your application.init()

 in deployment mode this setting is turned off by default

 -Igor


 On 7/24/06, samyem [EMAIL PROTECTED] wrote:

 As soon as upgrading to the new version, I am getting these
 types of errors
 all over the place:

 WicketMessage: Internal error cloning object. Make sure all
 dependent
 objects implement Serializable. Class:
 com.wsi.mm.ui.shippingrates.ShippingRateGroupPage

 Root cause:

 java.io.NotSerializableException:
 com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2
 at java.io.ObjectOutputStream.writeObject0
 (ObjectOutputStream.java:1075)
 at
 
 java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
 at
 
 java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)
 at
 java.io.ObjectOutputStream.writeOrdinaryObject
 (ObjectOutputStream.java:1284)
 at
 
 java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
 at
 
 java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
 ...
 at
 wicket.protocol.http.HttpSessionStore.setAttribute
 (HttpSessionStore.java:57)
  at wicket.Session.setAttribute(Session.java:926)
  at wicket.PageMap.put(PageMap.java:526)
  at wicket.Session.touch(Session.java:714)
  at wicket.Page.renderPage(Page.java :422)
  at
 
 wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:226)
 ...
 Complete stack:

 wicket.WicketRuntimeException: Internal error cloning object.
 Make sure all
 dependent objects implement Serializable. Class:
 com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
 at
 
 wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)
 at wicket.Session.setAttribute (Session.java:926)
 


 It works fine with Wicket 1.2 release, but no more with 1.2.1.
 Please help!
 --
 View this message in context:
 http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
 Sent from the Wicket - User forum at Nabble.com.


 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance
 to share your
 opinions on IT  business topics through brief surveys -- and
 earn cash
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___ Wicket-user mailing list 
 Wicket-user@lists.sourceforge.net 
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 

Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Igor Vaynberg
hi marty, thank you for taking the time. wiki is too slow for me to be usable right now, if you have a sec could you edit the post and change thisgetDebugSettings()...togetDebugSettings().setSerializeSessionAttributes(false);
i didnt have the source with me when i answered and couldnt remember the exact name of the func.-IgorOn 7/24/06, Marty Backe 
[EMAIL PROTECTED] wrote:Done. Captured in the FAQ: 
http://www.wicket-wiki.org.uk/wiki/index.php/FAQsEelco Hillenius wrote: Yeah, that would make sense. We have one on the WIKI don't we? Eelco On 7/24/06, Frank Bille Jensen 
[EMAIL PROTECTED] wrote: Perhaps it should be a FAQ? On Mon, 2006-07-24 at 11:12 -0700, Igor Vaynberg wrote:
 are you in development mode? if so this is a debug feature to help you find potential problems when your app will run clustered. it checks your component graphs to make
 sure everything is serializable as it has to be for clustering if you are not going to cluster you can turn this off by doing getDebugSettings() in your 
application.init() in deployment mode this setting is turned off by default -Igor On 7/24/06, samyem 
[EMAIL PROTECTED] wrote: As soon as upgrading to the new version, I am getting these types of errors all over the place:
 WicketMessage: Internal error cloning object. Make sure all dependent objects implement Serializable. Class: com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
 Root cause: java.io.NotSerializableException: com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2 at 
java.io.ObjectOutputStream.writeObject0 (ObjectOutputStream.java:1075) at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
 at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341) at java.io.ObjectOutputStream.writeOrdinaryObject
 (ObjectOutputStream.java:1284) at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073) at 
java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369) ... at wicket.protocol.http.HttpSessionStore.setAttribute (
HttpSessionStore.java:57)at wicket.Session.setAttribute(Session.java:926)at wicket.PageMap.put(PageMap.java:526)at wicket.Session.touch
(Session.java:714)at wicket.Page.renderPage(Page.java :422)at wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java
:226) ... Complete stack: wicket.WicketRuntimeException: Internal error cloning object. Make sure all dependent objects implement Serializable. Class:
 com.wsi.mm.ui.shippingrates.ShippingRateGroupPage at wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63) at 
wicket.Session.setAttribute (Session.java:926)  It works fine with Wicket 1.2 release, but no more with 1.2.1. Please help!
 -- View this message in context: http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
 Sent from the Wicket - User forum at Nabble.com. -
 Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT  business topics through brief surveys -- and
 earn cash http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user -
 Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
 - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user - Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT  business topics through brief surveys -- and earn cash 
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net 

Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Marty Backe
No problem. I'm glad to act as a scribe, my tiny contribution to the 
community. As time permits I'll continue to capture some of the wisdom 
from this list in the Wiki.

Marty

Igor Vaynberg wrote:
 hi marty, thank you for taking the time.

 wiki is too slow for me to be usable right now, if you have a sec 
 could you edit the post and change this

 getDebugSettings()...

 to

 getDebugSettings().setSerializeSessionAttributes(false);

 i didnt have the source with me when i answered and couldnt remember 
 the exact name of the func.

 -Igor


 On 7/24/06, *Marty Backe*  [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:

 Done. Captured in the FAQ:
 http://www.wicket-wiki.org.uk/wiki/index.php/FAQs

 Eelco Hillenius wrote:
  Yeah, that would make sense. We have one on the WIKI don't we?
 
  Eelco
 
 
  On 7/24/06, Frank Bille Jensen  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
  Perhaps it should be a FAQ?
 
 
  On Mon, 2006-07-24 at 11:12 -0700, Igor Vaynberg wrote:
 
  are you in development mode?
 
  if so this is a debug feature to help you find potential
 problems when
  your app will run clustered. it checks your component graphs
 to make
  sure everything is serializable as it has to be for clustering
 
  if you are not going to cluster you can turn this off by doing
  getDebugSettings() in your application.init()
 
  in deployment mode this setting is turned off by default
 
  -Igor
 
 
  On 7/24/06, samyem  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
  As soon as upgrading to the new version, I am getting
 these
  types of errors
  all over the place:
 
  WicketMessage: Internal error cloning object. Make
 sure all
  dependent
  objects implement Serializable. Class:
  com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
 
  Root cause:
 
  java.io.NotSerializableException:
 
 com.wsi.mm.ui.shippingrates.ShippingRateGroupSideBarPanel$2
  at java.io.ObjectOutputStream.writeObject0
  (ObjectOutputStream.java:1075)
  at
 
 
 java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)

  at
 
 java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)
  at
  java.io.ObjectOutputStream.writeOrdinaryObject
  (ObjectOutputStream.java:1284)
  at
 
 java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
  at
 
 
 java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
  ...
  at
  wicket.protocol.http.HttpSessionStore.setAttribute
  ( HttpSessionStore.java:57)
   at wicket.Session.setAttribute(Session.java:926)
   at wicket.PageMap.put(PageMap.java:526)
   at wicket.Session.touch (Session.java:714)
   at wicket.Page.renderPage(Page.java :422)
   at
 
 
 wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java
 :226)
  ...
  Complete stack:
 
  wicket.WicketRuntimeException: Internal error cloning
 object.
  Make sure all
  dependent objects implement Serializable. Class:
  com.wsi.mm.ui.shippingrates.ShippingRateGroupPage
  at
 
 
 wicket.protocol.http.HttpSessionStore.setAttribute(HttpSessionStore.java:63)
  at wicket.Session.setAttribute (Session.java:926)
  
 
 
  It works fine with Wicket 1.2 release, but no more
 with 1.2.1.
  Please help!
  --
  View this message in context:
 
 http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
 http://www.nabble.com/Wicket-1.2.1-available-tf1992241.html#a5472531
  Sent from the Wicket - User forum at Nabble.com
 http://Nabble.com.
 
 
 
 -

  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get
 the chance
  to share your
  opinions on IT  business topics through brief surveys
 -- and
  earn cash
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list