Re: AutoCompleteTextField

2015-05-19 Thread Chris
HI Sven,

how is it possible to get the input from the text field when the user does not 
select one value from the listed choices, but type in some text? I would also 
like to get this value, but currently the model does not get updated in this 
case.

Thanks, Chris


> Am 19.05.2015 um 16:36 schrieb Sven Meier :
> 
> Sure, just implement #getChoices() accordingly.
> 
> Have fun
> Sven
> 
> 
> On 19.05.2015 16:32, Chris wrote:
>> Hi all,
>> 
>> can the auto complete text field also be used in that way that it 
>> autocompletes words in the middle, too?
>> Such as „minster“ for „Westminster Abbey“? In the example below only 
>> autocompletion for comparison of text start is demonstrated.
>> 
>> http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1 
>> 
>> 
>> Thanks, Chris
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AutoCompleteTextField

2015-05-19 Thread Chris
Hi Sven,

it works when I set the object of the existing panel’s model but do not replace 
the model:

existModel.setObject(new List…);
panel.setDefaultModel(existModel)

Why doesn’t it work when replacing the model at all?
panel.setDefaultModel(newModel)

br, Chris



> Am 19.05.2015 um 23:11 schrieb Sven Meier :
> 
> Hi,
> 
>> panel.setDefaultModel(searchModel);
> 
> does your panel pass its model to the repeater component?
> 
> Regards
> Sven
> 
> 
> On 19.05.2015 23:04, Chris wrote:
>> Hi,
>> 
>> I have implemented the AutoComplete text field. Based on the input, I would 
>> like to change the model of a panel to show an updated list of elements.
>> In the below code, the method #getObject of the searchModel never gets 
>> executed and the panel’s list is not refreshed.
>> 
>> What might be missing?
>> 
>> Thanks, Chris
>> 
>> 
>> add(new AjaxFallbackLink("searchButton") {
>> @Override
>> public void onClick(AjaxRequestTarget target) {
>> 
>> IModel> searchModel = new ListModel() {
>> 
>> @Override
>> public List getObject() {
>> 
>> List list = Lists.newArrayList();
>> Map map = service.getObjects();
>> for (String name : map.keySet()) {
>> list.add(map.get(name));
>> }
>> return list;
>> }
>> };
>> 
>> 
>> panel.setDefaultModel(searchModel);
>> panel.modelChanged();
>>  target.add(panel);
>> 
>> send(getPage(), Broadcast.BREADTH, new ShowItem(target));
>> 
>> }
>> });
>> 
>> 
>>> Am 19.05.2015 um 16:36 schrieb Sven Meier :
>>> 
>>> Sure, just implement #getChoices() accordingly.
>>> 
>>> Have fun
>>> Sven
>>> 
>>> 
>>> On 19.05.2015 16:32, Chris wrote:
 Hi all,
 
 can the auto complete text field also be used in that way that it 
 autocompletes words in the middle, too?
 Such as „minster“ for „Westminster Abbey“? In the example below only 
 autocompletion for comparison of text start is demonstrated.
 
 http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1 
 
 
 Thanks, Chris
>>> 
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>> 
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>> 
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AutoCompleteTextField

2015-05-19 Thread Sven Meier

Hi,


panel.setDefaultModel(searchModel);


does your panel pass its model to the repeater component?

Regards
Sven


On 19.05.2015 23:04, Chris wrote:

Hi,

I have implemented the AutoComplete text field. Based on the input, I would 
like to change the model of a panel to show an updated list of elements.
In the below code, the method #getObject of the searchModel never gets executed 
and the panel’s list is not refreshed.

What might be missing?

Thanks, Chris


add(new AjaxFallbackLink("searchButton") {
 @Override
 public void onClick(AjaxRequestTarget target) {

 IModel> searchModel = new ListModel() {

 @Override
 public List getObject() {

 List list = Lists.newArrayList();
 Map map = service.getObjects();
 for (String name : map.keySet()) {
 list.add(map.get(name));
 }
 return list;
 }
 };


 panel.setDefaultModel(searchModel);
 panel.modelChanged();
target.add(panel);

 send(getPage(), Broadcast.BREADTH, new ShowItem(target));

 }
});



Am 19.05.2015 um 16:36 schrieb Sven Meier :

Sure, just implement #getChoices() accordingly.

Have fun
Sven


On 19.05.2015 16:32, Chris wrote:

Hi all,

can the auto complete text field also be used in that way that it autocompletes 
words in the middle, too?
Such as „minster“ for „Westminster Abbey“? In the example below only 
autocompletion for comparison of text start is demonstrated.

http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1 


Thanks, Chris


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AutoCompleteTextField

2015-05-19 Thread Chris
Hi, 

I have implemented the AutoComplete text field. Based on the input, I would 
like to change the model of a panel to show an updated list of elements.
In the below code, the method #getObject of the searchModel never gets executed 
and the panel’s list is not refreshed.

What might be missing?

Thanks, Chris


add(new AjaxFallbackLink("searchButton") {
@Override
public void onClick(AjaxRequestTarget target) {

IModel> searchModel = new ListModel() {

@Override
public List getObject() {

List list = Lists.newArrayList();
Map map = service.getObjects();
for (String name : map.keySet()) {
list.add(map.get(name));
}
return list;
}
};


panel.setDefaultModel(searchModel);
panel.modelChanged();
target.add(panel);

send(getPage(), Broadcast.BREADTH, new ShowItem(target));

}
});


> Am 19.05.2015 um 16:36 schrieb Sven Meier :
> 
> Sure, just implement #getChoices() accordingly.
> 
> Have fun
> Sven
> 
> 
> On 19.05.2015 16:32, Chris wrote:
>> Hi all,
>> 
>> can the auto complete text field also be used in that way that it 
>> autocompletes words in the middle, too?
>> Such as „minster“ for „Westminster Abbey“? In the example below only 
>> autocompletion for comparison of text start is demonstrated.
>> 
>> http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1 
>> 
>> 
>> Thanks, Chris
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Re-rendering page on errors during onBeforeRender()

2015-05-19 Thread Sven Meier

This seems to be a bug - please create a Jira issue.

Thanks
Sven


On 19.05.2015 14:53, Michal Kára wrote:

I got page with structure like:

- Page
   +- ListView -- items
   \ - Footer panel


Now the scenario (heavily simplified):

One of the items in ListView throws soft exception during onInitialize().
Required behavior in this case is to keep user on the page and replace
ListView with a panel stating "Sorry, backend outage".

So I catch the exception using aspect, replace view in the structure with
the panel and throw NonResettingRestartException to restart rendering the
page.

Page is rendered and seems OK, BUT I realize onBeforeRender() of Footer
panel is never called.

I debugged it and found the cause:

ListView adds items in onPopulate() method which is called from
onBeforeRender(). What happens is that page starts rendering. Its
onBeforeRender() is called. Page does:

setFlag(FLAG_PREPARED_FOR_RENDER, true);

and calls onBeforeRenderChildren(). This calls onBeforeRender() of ListView,
causes exception, so that onBeforeRender() of the footer is not called this
time.

When second rendering is attempted, call flow gets to internalBeforeRender()
of page. There is check:

if ((determineVisibility()) && !getFlag(FLAG_RENDERING) &&
!getFlag(FLAG_PREPARED_FOR_RENDER)) {
   ...
   onBeforeRender();
   ...
}

But since FLAG_PREPARED_FOR_RENDER is set from previous attempt,
onBeforeRender() of the page is not called (again) which means
onBeforeRender() of the children is not called.

I found that if I call

markRendering(false);

on the page before throwing the NonResettingRestartException, all goes well.
But I am quite uneasy about this solution, so I have two questions:

1) Cannot this cause some unforeseen troubles? (Supposing my components are
correctly written so that their onBeforeRender() / onConfigure() /
onAfterRender() procedures can be safely called multiple times.)

2) Should not Wicket itself reset the FLAG_PREPARED_FOR_RENDER when response
restarting exception is caught and processed?


I created a Wicket quickstart project demonstrating the bug here:
http://lemming.hofyland.cz/restartbug.zip

Thank you,
Michal.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Re-rendering-page-on-errors-during-onBeforeRender-tp4670835.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AutoCompleteTextField

2015-05-19 Thread Sven Meier

Sure, just implement #getChoices() accordingly.

Have fun
Sven


On 19.05.2015 16:32, Chris wrote:

Hi all,

can the auto complete text field also be used in that way that it autocompletes 
words in the middle, too?
Such as „minster“ for „Westminster Abbey“? In the example below only 
autocompletion for comparison of text start is demonstrated.

http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1 


Thanks, Chris



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AutoCompleteTextField

2015-05-19 Thread Martin Grigorov
https://github.com/apache/wicket/blob/31f3acb0d01af7be11a85c8e611c420180f77924/wicket-examples/src/main/java/org/apache/wicket/examples/ajax/builtin/AutoCompletePage.java#L97

replace #startsWith() with #contains()

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Tue, May 19, 2015 at 5:32 PM, Chris  wrote:

> Hi all,
>
> can the auto complete text field also be used in that way that it
> autocompletes words in the middle, too?
> Such as „minster“ for „Westminster Abbey“? In the example below only
> autocompletion for comparison of text start is demonstrated.
>
> http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1 <
> http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1>
>
> Thanks, Chris


AutoCompleteTextField

2015-05-19 Thread Chris
Hi all,

can the auto complete text field also be used in that way that it autocompletes 
words in the middle, too? 
Such as „minster“ for „Westminster Abbey“? In the example below only 
autocompletion for comparison of text start is demonstrated.

http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete?1 


Thanks, Chris

Re: Handle Exceptions outside of RequestCycle

2015-05-19 Thread Ravi
Nice, I didn't see that.

That does solve my Problem, Thank you :)


Martin Grigorov-4 wrote
> You can ignore paths in WicketFilter with 
> 
>  -
> https://github.com/apache/wicket/blob/31f3acb0d01af7be11a85c8e611c420180f77924/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java#L77
> 
> Martin Grigorov
> Wicket Training and Consulting
> https://twitter.com/mtgrigorov
> 
> On Tue, May 19, 2015 at 3:06 PM, Ravi <

> ravi.knox@

> > wrote:
> 
>> Hi Martin,
>>
>> thank you for your quick reply.
>> I have specified my errorpages inside the web.xml as well, although
>> pointing
>> to my Wicket pages.
>>
>> I now created a dedicated static .html file as a reference in the web.xml
>> but I still pass through the WicketFilter, since it is mapped to root
>> lvl.
>>
>> I will try it with a custom Filter next.
>>
>> thanks,
>>
>> Ravi
>>
>> --
>> View this message in context:
>> http://apache-wicket.1842946.n4.nabble.com/Handle-Exceptions-outside-of-RequestCycle-tp4670828p4670830.html
>> Sent from the Users forum mailing list archive at Nabble.com.
>>
>> -
>> To unsubscribe, e-mail: 

> users-unsubscribe@.apache

>> For additional commands, e-mail: 

> users-help@.apache

>>
>>



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Handle-Exceptions-outside-of-RequestCycle-tp4670828p4670836.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re-rendering page on errors during onBeforeRender()

2015-05-19 Thread Michal Kára
I got page with structure like:

- Page
  +- ListView -- items
  \ - Footer panel


Now the scenario (heavily simplified):

One of the items in ListView throws soft exception during onInitialize().
Required behavior in this case is to keep user on the page and replace
ListView with a panel stating "Sorry, backend outage".

So I catch the exception using aspect, replace view in the structure with
the panel and throw NonResettingRestartException to restart rendering the
page.

Page is rendered and seems OK, BUT I realize onBeforeRender() of Footer
panel is never called.

I debugged it and found the cause:

ListView adds items in onPopulate() method which is called from
onBeforeRender(). What happens is that page starts rendering. Its
onBeforeRender() is called. Page does:

setFlag(FLAG_PREPARED_FOR_RENDER, true);

and calls onBeforeRenderChildren(). This calls onBeforeRender() of ListView,
causes exception, so that onBeforeRender() of the footer is not called this
time.

When second rendering is attempted, call flow gets to internalBeforeRender()
of page. There is check:

if ((determineVisibility()) && !getFlag(FLAG_RENDERING) &&
!getFlag(FLAG_PREPARED_FOR_RENDER)) {
  ...
  onBeforeRender();
  ...
}

But since FLAG_PREPARED_FOR_RENDER is set from previous attempt,
onBeforeRender() of the page is not called (again) which means
onBeforeRender() of the children is not called.

I found that if I call

markRendering(false);

on the page before throwing the NonResettingRestartException, all goes well.
But I am quite uneasy about this solution, so I have two questions:

1) Cannot this cause some unforeseen troubles? (Supposing my components are
correctly written so that their onBeforeRender() / onConfigure() /
onAfterRender() procedures can be safely called multiple times.)

2) Should not Wicket itself reset the FLAG_PREPARED_FOR_RENDER when response
restarting exception is caught and processed?


I created a Wicket quickstart project demonstrating the bug here:
http://lemming.hofyland.cz/restartbug.zip

Thank you,
Michal.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Re-rendering-page-on-errors-during-onBeforeRender-tp4670835.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: open page in new tab

2015-05-19 Thread Chris
Martin, Thanks a lot!

> Am 19.05.2015 um 14:30 schrieb Martin Grigorov :
> 
> Because you use Ajax link.
> 
> Martin Grigorov
> Wicket Training and Consulting
> https://twitter.com/mtgrigorov
> 
> On Tue, May 19, 2015 at 3:24 PM, Chris  wrote:
> 
>> Hi all,
>> 
>> It seems that target=„_blank“ is ignored - the info page opens in the same
>> window instead in a new tab.
>> Does someone know why this is the case?
>> 
>> Thanks, Chris
>> 
>> 
>> info
>> Link link = new AjaxFallbackLink("info") {
>>@Override
>>public void onClick(AjaxRequestTarget target) {
>>setResponsePage(new InfoPage());
>>}
>> };
>> 
>> 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: open page in new tab

2015-05-19 Thread Martin Grigorov
Because you use Ajax link.

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Tue, May 19, 2015 at 3:24 PM, Chris  wrote:

> Hi all,
>
> It seems that target=„_blank“ is ignored - the info page opens in the same
> window instead in a new tab.
> Does someone know why this is the case?
>
> Thanks, Chris
>
>
> info
> Link link = new AjaxFallbackLink("info") {
> @Override
> public void onClick(AjaxRequestTarget target) {
> setResponsePage(new InfoPage());
> }
> };
>
>


Re: Handle Exceptions outside of RequestCycle

2015-05-19 Thread Martin Grigorov
You can ignore paths in WicketFilter with  -
https://github.com/apache/wicket/blob/31f3acb0d01af7be11a85c8e611c420180f77924/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java#L77

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Tue, May 19, 2015 at 3:06 PM, Ravi  wrote:

> Hi Martin,
>
> thank you for your quick reply.
> I have specified my errorpages inside the web.xml as well, although
> pointing
> to my Wicket pages.
>
> I now created a dedicated static .html file as a reference in the web.xml
> but I still pass through the WicketFilter, since it is mapped to root lvl.
>
> I will try it with a custom Filter next.
>
> thanks,
>
> Ravi
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Handle-Exceptions-outside-of-RequestCycle-tp4670828p4670830.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Handle Exceptions outside of RequestCycle

2015-05-19 Thread Ravi
Hi Martin,

thank you for your quick reply.
I have specified my errorpages inside the web.xml as well, although pointing
to my Wicket pages.

I now created a dedicated static .html file as a reference in the web.xml
but I still pass through the WicketFilter, since it is mapped to root lvl.

I will try it with a custom Filter next.

thanks, 

Ravi

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Handle-Exceptions-outside-of-RequestCycle-tp4670828p4670830.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



open page in new tab

2015-05-19 Thread Chris
Hi all,

It seems that target=„_blank“ is ignored - the info page opens in the same 
window instead in a new tab.
Does someone know why this is the case?

Thanks, Chris


info
Link link = new AjaxFallbackLink("info") {
@Override
public void onClick(AjaxRequestTarget target) {
setResponsePage(new InfoPage());
}
};



Re: Handle Exceptions outside of RequestCycle

2015-05-19 Thread Martin Grigorov
Hi,

You can specify error page on Servlet level - in web.xml.
http://stackoverflow.com/questions/7066192/how-to-specify-the-default-error-page-in-web-xml
Mount your Wicket error page and specify that path in web.xml configuration.

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Tue, May 19, 2015 at 1:05 PM, Ravi  wrote:

> Hi all,I'm facing the following problem, where I'm not sure how to best
> handle it.I did specify all error pages, and they work if I'm within my
> Request-Response perimeter.If I manipulate a Requestheader, that it says
> for
> example: "Wicket-Ajax: trssue" instead of "Wicket-Ajax: true", I get the
> tomcat 500 error page with a stack trace and some Tomcat related Info.
> Especially the Tomcat version. Since this can be a security Issue, it
> should
> my custom page.As far as I can see, the exception is thrown within the
> Wicketfilter.processRequest() method, more specifically:WebRequest
> webRequest = application.createWebRequest(httpServletRequest,
> filterPath);It
> does pass that Line two times, so I guess it does try to call may Error
> page, but with the same Header, resulting again in an Error.Here is the
> Stacktrace
> org.apache.wicket.util.string.StringValueConversionException: Boolean value
> "trssue" not recognized
> org.apache.wicket.util.string.Strings.isTrue(Strings.java:623)
>
> org.apache.wicket.protocol.http.WebApplication.createWebRequest(WebApplication.java:468)
>
> org.apache.wicket.protocol.http.WicketFilter.processRequest(WicketFilter.java:196)
>
> org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:282)
>
> org.springframework.orm.hibernate4.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:119)
>
> org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
>
> org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:83)
>
> org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
> I don't see how to best approach that.Do you have any advice/ideas?I am
> working with Wicket 7.M5.Thanks, Ravi
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Handle-Exceptions-outside-of-RequestCycle-tp4670828.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Handle Exceptions outside of RequestCycle

2015-05-19 Thread Ravi
Hi all,I'm facing the following problem, where I'm not sure how to best
handle it.I did specify all error pages, and they work if I'm within my
Request-Response perimeter.If I manipulate a Requestheader, that it says for
example: "Wicket-Ajax: trssue" instead of "Wicket-Ajax: true", I get the
tomcat 500 error page with a stack trace and some Tomcat related Info.
Especially the Tomcat version. Since this can be a security Issue, it should
my custom page.As far as I can see, the exception is thrown within the
Wicketfilter.processRequest() method, more specifically:WebRequest
webRequest = application.createWebRequest(httpServletRequest, filterPath);It
does pass that Line two times, so I guess it does try to call may Error
page, but with the same Header, resulting again in an Error.Here is the
Stacktrace
org.apache.wicket.util.string.StringValueConversionException: Boolean value
"trssue" not recognized
org.apache.wicket.util.string.Strings.isTrue(Strings.java:623)
org.apache.wicket.protocol.http.WebApplication.createWebRequest(WebApplication.java:468)
org.apache.wicket.protocol.http.WicketFilter.processRequest(WicketFilter.java:196)
org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:282)
org.springframework.orm.hibernate4.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:119)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:83)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
I don't see how to best approach that.Do you have any advice/ideas?I am
working with Wicket 7.M5.Thanks, Ravi

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Handle-Exceptions-outside-of-RequestCycle-tp4670828.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org