[Wicket-user] How to set a date on backing model obj from contents of drop down lists?

2007-07-30 Thread Justin Morgan (Logic Sector)
Hi all,

Sorry for the potentially noobish question, but I'm not sure how to  
go about this in Wicket...

I need to set a Date on a form's model object by way of three drop  
down lists.  The drop downs look something like this:

Drop down 1 contents:  "Month", "January", "February", ..., "December"
Drop down 2 contents:  "Day", "1", "2", ..., "31"
Drop down 3 contents:  "Year", "2007", "2006", ..., "1907"

Clicking the Submit button on the form will save a single  
java.util.Date object on the form's backing model object based on the  
aggregate values of the three lists' selections.

Thanks for any suggestions,

Justin

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Must renderHead even if setVisible(false)

2007-07-30 Thread Carlos Pita
Hi all,
I have a component that contributes some javascript to the header. Initially
the component won't be shown but an ajax event could make it visible. The
problem is that the javascript is contributed later, during the ajax
response, and there is a security concern with firefox: "permission denied
to call method XMLHttpRequest.open". This is because I'm trying to include
an external script (simply 

Re: [Wicket-user] OnChangeAjaxBehavior and Repeater issue on FireFox

2007-07-30 Thread Flavius

Ah!  That fixed it.  Thank you, kind sir!


igor.vaynberg wrote:
> 
> try changing
> 
> 
> 
> to
> 
> 
> 
> you shouldnt nest block elements (table/div) in inline elements.
> 
> -igor
> 
> 
> 
> On 7/30/07, Flavius <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> Greetings.
>>
>> I have a page that uses the new OnChangeAjaxBehavior.  When values
>> are typed into the text field, it updates a RepeaterView.  It works
>> with the first key press but, almost always, it doesn't fire the
>> onUpdate()
>> event on subsequent key presses, but only on FireFox (I'm using 2.0.0.5).
>>
>> It works fine with IE 7.  To make sure I didn't configure anything
>> incorrectly,
>> I copied the OnChangeAjaxBehaviorPage sample to my project and ran it.
>> That works fine for both IE and FireFox.  Since I can reasonably
>> eliminate
>> environment, it seems like the probable issue has something to do with
>> the repeater code, or its container.  In looking at the AJAX DEBUG window
>> it looks like the ajax is completing successfully.
>>
>> I'm using the wicket 1.3.0-beta2 build.  I also tried now with the
>> snapshot from today (561103).  The same results.
>>
>> I put up a test page at http://24.248.103.44/pages/TestAjax.  The
>> page has the java code on it.
>>
>> IE works fine, but FF fails after the first key press.
>>
>> I also have the sample from examples too:
>>
>> http://24.248.103.44/pages/OnChangeAjaxBehaviorPage
>>
>> That works for IE and FF.
>>
>> I'd appreciate any insight into what I may be doing wrong.
>>
>>
>>
>> --
>> View this message in context:
>> http://www.nabble.com/OnChangeAjaxBehavior-and-Repeater-issue-on-FireFox-tf4178944.html#a11883174
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> IMPORTANT NOTICE:
>>
>> This mailing list is shutting down. Please subscribe to the Apache Wicket
>> user list. Send a message to: "users-subscribe at wicket.apache.org" and
>> follow the instructions.
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> IMPORTANT NOTICE:
> 
> This mailing list is shutting down. Please subscribe to the Apache Wicket
> user list. Send a message to: "users-subscribe at wicket.apache.org" and
> follow the instructions.
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/OnChangeAjaxBehavior-and-Repeater-issue-on-FireFox-tf4178944.html#a11884152
Sent from the Wicket - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problems when trying to use Acegi with Wicket application

2007-07-30 Thread Luke Taylor


lubosp wrote:
>
> Tomcat tries to open /app/MyAppSignIn.html if I reference
> http://localhost:8080/myapp/app, but it cannot find it.
>

I'm pretty new to wicket (though very familiar with Acegi) but I'm
guessing you'd have to mount the login page as a bookmarkable URL in
your wicket app if you want to use it from Acegi.


> My question is, how do I configure Acegi so it uses Wicket MyAppSignIn page
> (same as YourAppSignIn extends WebPage from
> http://cwiki.apache.org/WICKET/acegi-and-wicket-auth-roles.html0.
> 
> Thanks, Lubos

-- 
 Luke Taylor.  Monkey Machine Ltd.
 PGP Key ID: 0x57E9523Chttp://www.monkeymachine.ltd.uk


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] OnChangeAjaxBehavior and Repeater issue on FireFox

2007-07-30 Thread Igor Vaynberg
try changing



to



you shouldnt nest block elements (table/div) in inline elements.

-igor



On 7/30/07, Flavius <[EMAIL PROTECTED]> wrote:
>
>
>
> Greetings.
>
> I have a page that uses the new OnChangeAjaxBehavior.  When values
> are typed into the text field, it updates a RepeaterView.  It works
> with the first key press but, almost always, it doesn't fire the
> onUpdate()
> event on subsequent key presses, but only on FireFox (I'm using 2.0.0.5).
>
> It works fine with IE 7.  To make sure I didn't configure anything
> incorrectly,
> I copied the OnChangeAjaxBehaviorPage sample to my project and ran it.
> That works fine for both IE and FireFox.  Since I can reasonably eliminate
> environment, it seems like the probable issue has something to do with
> the repeater code, or its container.  In looking at the AJAX DEBUG window
> it looks like the ajax is completing successfully.
>
> I'm using the wicket 1.3.0-beta2 build.  I also tried now with the
> snapshot from today (561103).  The same results.
>
> I put up a test page at http://24.248.103.44/pages/TestAjax.  The
> page has the java code on it.
>
> IE works fine, but FF fails after the first key press.
>
> I also have the sample from examples too:
>
> http://24.248.103.44/pages/OnChangeAjaxBehaviorPage
>
> That works for IE and FF.
>
> I'd appreciate any insight into what I may be doing wrong.
>
>
>
> --
> View this message in context:
> http://www.nabble.com/OnChangeAjaxBehavior-and-Repeater-issue-on-FireFox-tf4178944.html#a11883174
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> IMPORTANT NOTICE:
>
> This mailing list is shutting down. Please subscribe to the Apache Wicket
> user list. Send a message to: "users-subscribe at wicket.apache.org" and
> follow the instructions.
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] OnChangeAjaxBehavior and Repeater issue on FireFox

2007-07-30 Thread Flavius


Greetings.

I have a page that uses the new OnChangeAjaxBehavior.  When values
are typed into the text field, it updates a RepeaterView.  It works
with the first key press but, almost always, it doesn't fire the onUpdate()
event on subsequent key presses, but only on FireFox (I'm using 2.0.0.5).

It works fine with IE 7.  To make sure I didn't configure anything
incorrectly,
I copied the OnChangeAjaxBehaviorPage sample to my project and ran it.
That works fine for both IE and FireFox.  Since I can reasonably eliminate
environment, it seems like the probable issue has something to do with
the repeater code, or its container.  In looking at the AJAX DEBUG window
it looks like the ajax is completing successfully.

I'm using the wicket 1.3.0-beta2 build.  I also tried now with the
snapshot from today (561103).  The same results.

I put up a test page at http://24.248.103.44/pages/TestAjax.  The
page has the java code on it.

IE works fine, but FF fails after the first key press.

I also have the sample from examples too:

http://24.248.103.44/pages/OnChangeAjaxBehaviorPage

That works for IE and FF.

I'd appreciate any insight into what I may be doing wrong.



-- 
View this message in context: 
http://www.nabble.com/OnChangeAjaxBehavior-and-Repeater-issue-on-FireFox-tf4178944.html#a11883174
Sent from the Wicket - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Map & items design issue

2007-07-30 Thread Eelco Hillenius
> Is there a common pattern to avoid such issue ? Would you have any suggestion 
> ?

Use a hashmap?

Eelco

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] ERROR - Internal error cloning object

2007-07-30 Thread Eelco Hillenius
> 2007-07-30 12:25:45:437 ERROR wicket.markup.html.WebPage
> [http-8080-Processor25] - Page [Page class =
> com.xmltravel.fab1.wicket.flights.FlightSearchResultPage , id = 1] couldn't
> be cloned to move to another pagemap
> wicket.WicketRuntimeException: Internal error cloning object
> at wicket.util.lang.Objects.cloneObject(Objects.java:466)
> at wicket.markup.html.WebPage.onNewBrowserWindow (WebPage.java:344)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(
> NativeMethodAccessorImpl.java:39)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke (
> DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:585)
> at wicket.RequestListenerInterface.invoke(RequestListenerInterface.java
> :187)
> at
> wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(
> ListenerInterfaceRequestTarget.java:74)
> at wicket.request.compound.DefaultEventProcessorStrategy.processEvents(
> DefaultEventProcessorStrategy.java:65)
> at

It tries to clone the current page for use in another window. It looks
like that spider makes Wicket think the requests are for new windows
all the time. You could try
getPageSettings().setAutomaticMultiWindowSupport(false) in your
application (false by default in 1.3 btw).

Eelco

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] ERROR - Internal error cloning object

2007-07-30 Thread Dipu Seminlal
Hi Martijn,

How do i switch the second level page cache off ? I am using version 1.2.6,
do we have second level page in 1.2.6.

Regards
Dipu



On 7/30/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote:
>
> Switch the second level page cache off to use the httpsession store,
> like it was in 1.2. The second level page cache requires the objects
> attached to your components to be serializable as it tries to store
> the pages to disk using serialization.
>
> The old pagemap store didn't require serializable, but does use more
> server memore (though you can configure it yourself)
>
> Martijn
>
> On 7/30/07, Dipu Seminlal <[EMAIL PROTECTED]> wrote:
> > Hi Igor/Eelco and Others,
> >
> > Sorry i am reposting this, can any one please tell me how to get around
> this
> > issue.
> >
> > I am seeing loads of "Internal error cloning object" error in the log
> files.
> > I am running on DEPLOYMENT mode and also  i have set
> > get().getDebugSettings()
> > .setSerializeSessionAttributes(false);
> > ( which is not really required when i am on Deployment mode ) in the
> > application class.
> >
> > I have an Iframe on different site pointing to my application like this
> >  > hspace="0" vspace="0" target="_top"
> > src="
> >
> http://sagittarius:8080/fab1gui/search?wicket:bookmarkablePage=:com.xmltravel.fab1.wicket.flights.HorizontalSearchNavPage
> "
> > allowtransparency="true" frameborder="0" height="210" scrolling="no"
> > width="540">
> >
> > I tried to simulate this situation and noticed that when i do a submit
> on
> > the Iframe for the first time this error is thrown.
> >
> > How can i get around this issue.
> >
> > My client has configured a spider to do searches on the live site and i
> am
> > seeing loads and loads of Internal error cloning object exception.
> > And worst of all today there was an out of memory error, i am wondering
> if
> > the repeated occurrence of cloning excpetion has got anything to
> > do with the out of memory error.
> >
> > Regards
> > Dipu
> >
> >
> > 2007-07-30 12:25:45:437 ERROR wicket.markup.html.WebPage
> > [http-8080-Processor25] - Page [Page class =
> > com.xmltravel.fab1.wicket.flights.FlightSearchResultPage , id = 1]
> couldn't
> > be cloned to move to another pagemap
> > wicket.WicketRuntimeException: Internal error cloning object
> > at wicket.util.lang.Objects.cloneObject(Objects.java:466)
> > at wicket.markup.html.WebPage.onNewBrowserWindow (WebPage.java:344)
> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > at sun.reflect.NativeMethodAccessorImpl.invoke(
> > NativeMethodAccessorImpl.java:39)
> > at sun.reflect.DelegatingMethodAccessorImpl.invoke (
> > DelegatingMethodAccessorImpl.java:25)
> > at java.lang.reflect.Method.invoke(Method.java:585)
> > at wicket.RequestListenerInterface.invoke(
> RequestListenerInterface.java
> > :187)
> > at
> >
> wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents
> (
> > ListenerInterfaceRequestTarget.java:74)
> > at
> wicket.request.compound.DefaultEventProcessorStrategy.processEvents(
> > DefaultEventProcessorStrategy.java:65)
> > at
> >
> wicket.request.compound.AbstractCompoundRequestCycleProcessor.processEvents
> (
> > AbstractCompoundRequestCycleProcessor.java:57)
> > at wicket.RequestCycle.doProcessEventsAndRespond(RequestCycle.java
> :896)
> > at wicket.RequestCycle.processEventsAndRespond(RequestCycle.java
> :929)
> > at wicket.RequestCycle.step (RequestCycle.java:1010)
> > at wicket.RequestCycle.steps(RequestCycle.java:1084)
> > at wicket.RequestCycle.request(RequestCycle.java:454)
> > at wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:219)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
> > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> > ApplicationFilterChain.java :252)
> > at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> > ApplicationFilterChain.java:173)
> > at org.apache.catalina.core.StandardWrapperValve.invoke(
> > StandardWrapperValve.java:213)
> > at org.apache.catalina.core.StandardContextValve.invoke (
> > StandardContextValve.java:178)
> > at org.apache.catalina.core.StandardHostValve.invoke(
> > StandardHostValve.java:126)
> > at org.apache.catalina.valves.ErrorReportValve.invoke(
> > ErrorReportValve.java:105)
> > at org.apache.catalina.core.StandardEngineValve.invoke (
> > StandardEngineValve.java:107)
> > at org.apache.catalina.connector.CoyoteAdapter.service(
> > CoyoteAdapter.java:148)
> > at org.apache.coyote.http11.Http11Processor.process(
> Http11Processor.java
> > :869)
> > at
> >
> org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection
> (
> > Http11BaseProtocol.java:664)
> > at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(
> > PoolTcpEndpoint.java:527)
> >

Re: [Wicket-user] editable form

2007-07-30 Thread Ed _








Thanks the toString override  seems to work in that the correct values/ids that 
I want do get posted back.Like you mentioned is this the right way to do 
it?Even with this solution in response to the submit I still continue to get an 
error back - which isn't making much sense to 
me.http://localhost:8080/wicket/test/?wicket:interface=:5:DisplayPanel:PublishForm::IFormSubmitListenerWicketMessage:
 No get method defined for class: class java.lang.String expression: idRoot 
cause:wicket.WicketRuntimeException: No get method defined for class: class 
java.lang.String expression: id at 
wicket.util.lang.PropertyResolver.getGetAndSetter(PropertyResolver.java:324)
 at 
wicket.util.lang.PropertyResolver.getObjectAndGetSetter(PropertyResolver.java:200)
 at wicket.util.lang.PropertyResolver.getValue(PropertyResolver.java:88)
 at wicket.markup.html.form.ChoiceRenderer.getIdValue(ChoiceRenderer.java:148)  
   at wicket.markup.html.form.AbstractSingleSelectChoice.getModelValue(Abstra
 ctSingleSelectChoice.java:140) at 
wicket.markup.html.form.FormComponent.getValue(FormComponent.java:583) at 
wicket.markup.html.form.AbstractChoice.onComponentTagBody(AbstractChoice.java:319)
 at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) 
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:634)
 at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445) 
at java.lang.Thread.run(Thread.java:613).[Page 
class = com.test.web.myaccount.MyAccount, id = 5]:

  

  #
  Path
  Size
  Type
  Model Object

  
  

  1   
  _header   
  481 bytes   
  wicket.markup.html.internal.HtmlHeaderContainer   
 

  2   
  DisplayPanel   
  6.5K   
  com.test.web.myaccount.AccountPublishDisplayPanel   
 

  3   
  DisplayPanel:PublishForm   
  9.5K   
  wicket.markup.html.form.Form> Date: Mon, 30 Jul 2007 12:15:36 
+0200> From: [EMAIL PROTECTED]> To: wicket-user@lists.sourceforge.net> Subject: 
Re: [Wicket-user] editable form> > Hi,> > On 7/29/07, Ed _ <[EMAIL PROTECTED]> 
wrote:> >> > I am trying to create an editable form - this has a drop down 
list. in it> >> > List ratingList = cfg.getContentRatingList();> > 
DropDownChoice ratingChoice = new DropDownChoice("rating", new> > 
PropertyModel(form, "category"), ratingList, new> > ChoiceRenderer("label", 
"id"));> > I think what happens here is 
form.setCategory(ratingList.get(chosenOne)).> That's why you see generic 
toString output as the assigned value.> As a simple hack, you could override 
the toString() method of the rating class.> For a semi-decent solution, 
override the convertValue method of DropDownChoice.> I think what you really 
need is to add a Converter to ratingChoice.> (but IConverter does not extend 
IBehavior, so I don't know how to do> that properly)> > And in 
 an unrelated note, you could call this component "category"> instead of 
"rating", and give a CompoundProertyModel to the form.> Saves a lot of typing 
in the long run,> > 
-> This 
SF.net email is sponsored by: Splunk Inc.> Still grepping through log files to 
find problems?  Stop.> Now Search log events and configuration files using AJAX 
and a browser.> Download your FREE copy of Splunk now >>  
http://get.splunk.com/> ___> 
IMPORTANT NOTICE:> > This mailing list is shutting down. Please subscribe to 
the Apache Wicket user list. Send a message to: "users-subscribe at 
wicket.apache.org" and follow the instructions.> 
___> Wicket-user mailing list> 
Wicket-user@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wicket-user
_
Local listings, incredible imagery, and driving directions - all in one place! 
Find it!
http://maps.live.com/?wip=69&FORM=MGAC01
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket

Re: [Wicket-user] ERROR - Internal error cloning object

2007-07-30 Thread Martijn Dashorst
Switch the second level page cache off to use the httpsession store,
like it was in 1.2. The second level page cache requires the objects
attached to your components to be serializable as it tries to store
the pages to disk using serialization.

The old pagemap store didn't require serializable, but does use more
server memore (though you can configure it yourself)

Martijn

On 7/30/07, Dipu Seminlal <[EMAIL PROTECTED]> wrote:
> Hi Igor/Eelco and Others,
>
> Sorry i am reposting this, can any one please tell me how to get around this
> issue.
>
> I am seeing loads of "Internal error cloning object" error in the log files.
> I am running on DEPLOYMENT mode and also  i have set
> get().getDebugSettings()
> .setSerializeSessionAttributes(false);
> ( which is not really required when i am on Deployment mode ) in the
> application class.
>
> I have an Iframe on different site pointing to my application like this
>  hspace="0" vspace="0" target="_top"
> src="
> http://sagittarius:8080/fab1gui/search?wicket:bookmarkablePage=:com.xmltravel.fab1.wicket.flights.HorizontalSearchNavPage";
> allowtransparency="true" frameborder="0" height="210" scrolling="no"
> width="540">
>
> I tried to simulate this situation and noticed that when i do a submit on
> the Iframe for the first time this error is thrown.
>
> How can i get around this issue.
>
> My client has configured a spider to do searches on the live site and i am
> seeing loads and loads of Internal error cloning object exception.
> And worst of all today there was an out of memory error, i am wondering if
> the repeated occurrence of cloning excpetion has got anything to
> do with the out of memory error.
>
> Regards
> Dipu
>
>
> 2007-07-30 12:25:45:437 ERROR wicket.markup.html.WebPage
> [http-8080-Processor25] - Page [Page class =
> com.xmltravel.fab1.wicket.flights.FlightSearchResultPage , id = 1] couldn't
> be cloned to move to another pagemap
> wicket.WicketRuntimeException: Internal error cloning object
> at wicket.util.lang.Objects.cloneObject(Objects.java:466)
> at wicket.markup.html.WebPage.onNewBrowserWindow (WebPage.java:344)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(
> NativeMethodAccessorImpl.java:39)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke (
> DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:585)
> at wicket.RequestListenerInterface.invoke(RequestListenerInterface.java
> :187)
> at
> wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(
> ListenerInterfaceRequestTarget.java:74)
> at wicket.request.compound.DefaultEventProcessorStrategy.processEvents(
> DefaultEventProcessorStrategy.java:65)
> at
> wicket.request.compound.AbstractCompoundRequestCycleProcessor.processEvents(
> AbstractCompoundRequestCycleProcessor.java:57)
> at wicket.RequestCycle.doProcessEventsAndRespond(RequestCycle.java:896)
> at wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:929)
> at wicket.RequestCycle.step (RequestCycle.java:1010)
> at wicket.RequestCycle.steps(RequestCycle.java:1084)
> at wicket.RequestCycle.request(RequestCycle.java:454)
> at wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:219)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java :252)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:173)
> at org.apache.catalina.core.StandardWrapperValve.invoke(
> StandardWrapperValve.java:213)
> at org.apache.catalina.core.StandardContextValve.invoke (
> StandardContextValve.java:178)
> at org.apache.catalina.core.StandardHostValve.invoke(
> StandardHostValve.java:126)
> at org.apache.catalina.valves.ErrorReportValve.invoke(
> ErrorReportValve.java:105)
> at org.apache.catalina.core.StandardEngineValve.invoke (
> StandardEngineValve.java:107)
> at org.apache.catalina.connector.CoyoteAdapter.service(
> CoyoteAdapter.java:148)
> at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
> :869)
> at
> org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(
> Http11BaseProtocol.java:664)
> at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(
> PoolTcpEndpoint.java:527)
> at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(
> LeaderFollowerWorkerThread.java :80)
> at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(
> ThreadPool.java:684)
> at java.lang.Thread.run(Thread.java:595)
> Caused by: java.io.NotSerializableException:
> org.apache.catalina.core.ApplicationContextFacade
> at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1075)
> at java.io.Object

Re: [Wicket-user] onBeforeRender on every Request?

2007-07-30 Thread davor-x

Thank you very much.
Why I didnt thnik of that.. ;)


igor.vaynberg wrote:
> 
> onbeforerender() works recusively
> 
> lets look at your code
> 
> protected final void onBeforeRender()
> {
>super.onBeforeRender();
> org.apache.wicket.markup.html.WebMarkupContainer tabPartRepeater =
> (
> org.apache.wicket.markup.html.WebMarkupContainer)this
> .get("tabPartRepeater");
> 
> tabPartRepeater.removeAll();
> this.populateTabParts(tabPartRepeater);
> this.setupContentPanel();
> }
> 
> the problem here is you call super.onbeforerender(), then create more
> components - so onbeforerender() wont be called on those newly created
> components because it would cascade in super.onbeforerender().
> 
> to fix all you need to do is move super.onBeforeRender() to the end of the
> method.
> 
> -igor
> 
> 
> On 7/30/07, davor-x <[EMAIL PROTECTED]> wrote:
>>
>>
>> I created a small test webapp to replicate the problem. There are source
>> files and a jar package in WEB-INF/lib. Here is how to play with the app:
>> Tabbed panel tabs are on top. When you click on tabs, onBeforeRender IS
>> called, and the console outputs a line. Then, click on the link "Go to
>> Tab
>> X" - onBeforeRender is called, all ok. Then, click on the tab, where the
>> clicked link was: here onBeforeRender is NOT called.
>>
>> You'll need the latest 1.3 wicket snapshot. Mine is from yesterday, built
>> from svn.
>> Thx cheers bye
>>
>> http://www.nabble.com/file/p11859405/test-20070730.zip test-20070730.zip
>>
>>
>> igor.vaynberg wrote:
>> >
>> > yes it should on every request.
>> >
>> > during ajax only components being rendered (subtrees added to target)
>> have
>> > their onbeforerender() called.
>> >
>> > -igor
>> >
>> >
>> > On 7/29/07, davor-x <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >> Hi.
>> >> Is Component.onBeforeRender supposed to execute on every request, ajax
>> or
>> >> not?
>> >> Because, I have an example, where the component gets rendered, but
>> >> onBeforeRender is not called - on the same request. And then silly
>> thing
>> >> happen. (latest 1.3 snapshot)
>> >> Thanks for help
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/onBeforeRender-on-every-Request--tf4166588.html#a11854281
>> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >>
>> >>
>> >>
>> -
>> >> This SF.net email is sponsored by: Splunk Inc.
>> >> Still grepping through log files to find problems?  Stop.
>> >> Now Search log events and configuration files using AJAX and a
>> browser.
>> >> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> >> ___
>> >> IMPORTANT NOTICE:
>> >>
>> >> This mailing list is shutting down. Please subscribe to the Apache
>> Wicket
>> >> user list. Send a message to: "users-subscribe at wicket.apache.org"
>> and
>> >> follow the instructions.
>> >> ___
>> >> Wicket-user mailing list
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >
>> -
>> > This SF.net email is sponsored by: Splunk Inc.
>> > Still grepping through log files to find problems?  Stop.
>> > Now Search log events and configuration files using AJAX and a browser.
>> > Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> > ___
>> > IMPORTANT NOTICE:
>> >
>> > This mailing list is shutting down. Please subscribe to the Apache
>> Wicket
>> > user list. Send a message to: "users-subscribe at wicket.apache.org"
>> and
>> > follow the instructions.
>> > ___
>> > Wicket-user mailing list
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>> >
>

[Wicket-user] ERROR - Internal error cloning object

2007-07-30 Thread Dipu Seminlal
Hi Igor/Eelco and Others,

Sorry i am reposting this, can any one please tell me how to get around this
issue.

I am seeing loads of "Internal error cloning object" error in the log files.
I am running on DEPLOYMENT mode and also  i have set
get().getDebugSettings()
.setSerializeSessionAttributes(false);
( which is not really required when i am on Deployment mode ) in the
application class.

I have an Iframe on different site pointing to my application like this
http://sagittarius:8080/fab1gui/search?wicket:bookmarkablePage=:com.xmltravel.fab1.wicket.flights.HorizontalSearchNavPage";
allowtransparency="true" frameborder="0" height="210" scrolling="no"
width="540">

I tried to simulate this situation and noticed that when i do a submit on
the Iframe for the first time this error is thrown.

How can i get around this issue.

My client has configured a spider to do searches on the live site and i am
seeing loads and loads of Internal error cloning object exception.
And worst of all today there was an out of memory error, i am wondering if
the repeated occurrence of cloning excpetion has got anything to
do with the out of memory error.

Regards
Dipu


2007-07-30 12:25:45:437 ERROR wicket.markup.html.WebPage
[http-8080-Processor25] - Page [Page class =
com.xmltravel.fab1.wicket.flights.FlightSearchResultPage , id = 1] couldn't
be cloned to move to another pagemap
wicket.WicketRuntimeException: Internal error cloning object
at wicket.util.lang.Objects.cloneObject(Objects.java:466)
at wicket.markup.html.WebPage.onNewBrowserWindow (WebPage.java:344)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(
NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke (
DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at wicket.RequestListenerInterface.invoke(RequestListenerInterface.java
:187)
at
wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(
ListenerInterfaceRequestTarget.java:74)
at wicket.request.compound.DefaultEventProcessorStrategy.processEvents(
DefaultEventProcessorStrategy.java:65)
at
wicket.request.compound.AbstractCompoundRequestCycleProcessor.processEvents(
AbstractCompoundRequestCycleProcessor.java:57)
at wicket.RequestCycle.doProcessEventsAndRespond(RequestCycle.java:896)
at wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:929)
at wicket.RequestCycle.step (RequestCycle.java:1010)
at wicket.RequestCycle.steps(RequestCycle.java:1084)
at wicket.RequestCycle.request(RequestCycle.java:454)
at wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:219)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
ApplicationFilterChain.java :252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(
ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(
StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke (
StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(
StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(
ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke (
StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(
CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:869)
at
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(
Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(
PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(
LeaderFollowerWorkerThread.java :80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(
ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.io.NotSerializableException:
org.apache.catalina.core.ApplicationContextFacade
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 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.ObjectOut

Re: [Wicket-user] onBeforeRender on every Request?

2007-07-30 Thread Igor Vaynberg
onbeforerender() works recusively

lets look at your code

protected final void onBeforeRender()
{
   super.onBeforeRender();
org.apache.wicket.markup.html.WebMarkupContainer tabPartRepeater = (
org.apache.wicket.markup.html.WebMarkupContainer)this
.get("tabPartRepeater");

tabPartRepeater.removeAll();
this.populateTabParts(tabPartRepeater);
this.setupContentPanel();
}

the problem here is you call super.onbeforerender(), then create more
components - so onbeforerender() wont be called on those newly created
components because it would cascade in super.onbeforerender().

to fix all you need to do is move super.onBeforeRender() to the end of the
method.

-igor


On 7/30/07, davor-x <[EMAIL PROTECTED]> wrote:
>
>
> I created a small test webapp to replicate the problem. There are source
> files and a jar package in WEB-INF/lib. Here is how to play with the app:
> Tabbed panel tabs are on top. When you click on tabs, onBeforeRender IS
> called, and the console outputs a line. Then, click on the link "Go to Tab
> X" - onBeforeRender is called, all ok. Then, click on the tab, where the
> clicked link was: here onBeforeRender is NOT called.
>
> You'll need the latest 1.3 wicket snapshot. Mine is from yesterday, built
> from svn.
> Thx cheers bye
>
> http://www.nabble.com/file/p11859405/test-20070730.zip test-20070730.zip
>
>
> igor.vaynberg wrote:
> >
> > yes it should on every request.
> >
> > during ajax only components being rendered (subtrees added to target)
> have
> > their onbeforerender() called.
> >
> > -igor
> >
> >
> > On 7/29/07, davor-x <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >> Hi.
> >> Is Component.onBeforeRender supposed to execute on every request, ajax
> or
> >> not?
> >> Because, I have an example, where the component gets rendered, but
> >> onBeforeRender is not called - on the same request. And then silly
> thing
> >> happen. (latest 1.3 snapshot)
> >> Thanks for help
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/onBeforeRender-on-every-Request--tf4166588.html#a11854281
> >> Sent from the Wicket - User mailing list archive at Nabble.com.
> >>
> >>
> >>
> -
> >> This SF.net email is sponsored by: Splunk Inc.
> >> Still grepping through log files to find problems?  Stop.
> >> Now Search log events and configuration files using AJAX and a browser.
> >> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> >> ___
> >> IMPORTANT NOTICE:
> >>
> >> This mailing list is shutting down. Please subscribe to the Apache
> Wicket
> >> user list. Send a message to: "users-subscribe at wicket.apache.org"
> and
> >> follow the instructions.
> >> ___
> >> Wicket-user mailing list
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>
> >
> -
> > This SF.net email is sponsored by: Splunk Inc.
> > Still grepping through log files to find problems?  Stop.
> > Now Search log events and configuration files using AJAX and a browser.
> > Download your FREE copy of Splunk now >>  http://get.splunk.com/
> > ___
> > IMPORTANT NOTICE:
> >
> > This mailing list is shutting down. Please subscribe to the Apache
> Wicket
> > user list. Send a message to: "users-subscribe at wicket.apache.org" and
> > follow the instructions.
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/onBeforeRender-on-every-Request--tf4166588.html#a11859405
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> IMPO

[Wicket-user] Doc. of final method getReplaceModel says it can be overridden

2007-07-30 Thread Ann Baert

The "getReplaceModel" method of the AttributeModifier is declared protected &
final, and its docs say that it can be used in subclasses.
I use wicket 1.3 beta 2
How can this final method be overridden in subclasses? 
Is this a misperception over here, or is this a documentation or an API
mistake?

protected final IModel getReplaceModel()

Gets the replacement model. Allows subclasses access to replace model.
-- 
View this message in context: 
http://www.nabble.com/Doc.-of-final-method-getReplaceModel-says-it-can-be-overridden-tf4170050.html#a11863435
Sent from the Wicket - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] framework recommendation

2007-07-30 Thread m z

Wicket-user,
 
we're building an online auction website, sort of like ebay.com.  currently 
we're evaluating web frameworks.  do you think Wicket is suitable for this kind 
of webapp?  if not, can you suggest a framework that would be?
 
Thank you,
Dennis

 
_
Missed the show?  Watch videos of the Live Earth Concert on MSN.
http://liveearth.msn.com
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] editable form

2007-07-30 Thread Gabor Szokoli
Hi,

On 7/29/07, Ed _ <[EMAIL PROTECTED]> wrote:
>
> I am trying to create an editable form - this has a drop down list. in it
>
> List ratingList = cfg.getContentRatingList();
> DropDownChoice ratingChoice = new DropDownChoice("rating", new
> PropertyModel(form, "category"), ratingList, new
> ChoiceRenderer("label", "id"));

I think what happens here is form.setCategory(ratingList.get(chosenOne)).
That's why you see generic toString output as the assigned value.
As a simple hack, you could override the toString() method of the rating class.
For a semi-decent solution, override the convertValue method of DropDownChoice.
I think what you really need is to add a Converter to ratingChoice.
(but IConverter does not extend IBehavior, so I don't know how to do
that properly)

And in an unrelated note, you could call this component "category"
instead of "rating", and give a CompoundProertyModel to the form.
Saves a lot of typing in the long run,

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] onBeforeRender on every Request?

2007-07-30 Thread davor-x

I created a small test webapp to replicate the problem. There are source
files and a jar package in WEB-INF/lib. Here is how to play with the app:
Tabbed panel tabs are on top. When you click on tabs, onBeforeRender IS
called, and the console outputs a line. Then, click on the link "Go to Tab
X" - onBeforeRender is called, all ok. Then, click on the tab, where the
clicked link was: here onBeforeRender is NOT called. 

You'll need the latest 1.3 wicket snapshot. Mine is from yesterday, built
from svn.
Thx cheers bye

http://www.nabble.com/file/p11859405/test-20070730.zip test-20070730.zip 


igor.vaynberg wrote:
> 
> yes it should on every request.
> 
> during ajax only components being rendered (subtrees added to target) have
> their onbeforerender() called.
> 
> -igor
> 
> 
> On 7/29/07, davor-x <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi.
>> Is Component.onBeforeRender supposed to execute on every request, ajax or
>> not?
>> Because, I have an example, where the component gets rendered, but
>> onBeforeRender is not called - on the same request. And then silly thing
>> happen. (latest 1.3 snapshot)
>> Thanks for help
>>
>> --
>> View this message in context:
>> http://www.nabble.com/onBeforeRender-on-every-Request--tf4166588.html#a11854281
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> IMPORTANT NOTICE:
>>
>> This mailing list is shutting down. Please subscribe to the Apache Wicket
>> user list. Send a message to: "users-subscribe at wicket.apache.org" and
>> follow the instructions.
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> IMPORTANT NOTICE:
> 
> This mailing list is shutting down. Please subscribe to the Apache Wicket
> user list. Send a message to: "users-subscribe at wicket.apache.org" and
> follow the instructions.
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/onBeforeRender-on-every-Request--tf4166588.html#a11859405
Sent from the Wicket - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


�C���|�[�g���v�̐V�����

2007-07-30 Thread �������v
\x8Ae\x83u\x83\x89\x83\x93\x83h\x8E\x9E\x8Cv\x82\xCC\x95\xBD\x8Ds\x95i\x82\xCC\x89\xB5\x94\x84\x82\xE8\x89\xBF\x8Ai
\xA1\x8D\xC5\x92\xE1\x89\xBF\x8Ai\x82\xCD7800\x89~\x82\xA9\x82\xE7
\x93\x96\x95\xFB\x82\xCC\x8F\xA4\x95i\x82\xCD\x82\xB7\x82\xD7\x82\xC4\x8D\xC5\x8D\x82\x8B\x89\x81A\x8D\xC5\x8D\x82\x83\x89\x83\x93\x83N\x82\xCC\x8F\xA4\x95i\x82\xC5\x82\xB7\x81B


\x8E\xE5\x82\xC8\x8F\xA4\x95i\x82\xCD\x83\x8D\x83\x8C\x83b\x83N\x83XEミ\x90\xBB28800\x90U\x93\xAE/\x8E\x9E\x81A\x83\x8D\x83\x8C\x83b\x83N\x83X21800\x90U\x93\xAE/\x8E\x9E\x81A\x83t\x83\x89\x83\x93\x83N\x81E\x83~\x83\x85\x81[\x83\x89\x81[\x81A
[EMAIL PROTECTED]
http://www.alexwatch.net
\x93\x96ミ\x82\xCD\x83\x8D\x83\x8C\x83b\x83N\x83X\x82\xC8\x82\xC7\x83u\x83\x89\x83\x93\x83h\x8E\x9E\x8Cv\x82\xCC\x95\xBD\x8Ds\x97A\x93\xFC\x95i\x82\xF0\x89\xB5\x94\x84\x82\xE8\x89\xBF\x8Ai\x82\xC5\x94\xAD\x8Ds\x81A
\x82\xA8\x8Bq\x97l\x82\xC9\x91\xE5\x96\x9E\x91\xAB\x82\xC8\x8F\xA4\x95i\x82\xF0\x94\xCC\x94\x84\x82\xB5\x82\xC4\x82\xA8\x82\xE8\x82\xDC\x82\xB7\x81B\x83v\x83\x8C\x83[\x83\x93\x83g\x82\xC6\x82\xB5\x82\xC4\x82\xCD\x8D\xC5\x8D\x82\x82\xCC\x8E\x9E\x8Cv\x82\xF0\x91I\x82\xDA\x82\xA4\x81I

[EMAIL PROTECTED]
\x94\xAD\x91\x97\x8C\xE3\x81A3\x81`5\x93\xFA\x88\xC8\x93\xE0\x82\xC9\x93\x9E\x92\x85\x82\xA2\x82\xBD\x82\xB5\x82\xDC\x82\xB7\x81B

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: "users-subscribe at wicket.apache.org" and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user