> @HandlesEvent("myevent")
> public Resolution myevent() {
>     logger.debug("begin");
>     results = webservice.getResults();
>     logger.debug("end");
>     return new ForwardResolution("my.jsp");
> }
> 
> results in:
> 
> DEBUG - begin
> DEBUG - end
> DEBUG - begin
> DEBUG - end
> 
> @HandlesEvent("myevent")
> public Resolution myevent() {
>     logger.debug("begin");
>     //results = webservice.getResults();
>     logger.debug("end");
>     return new ForwardResolution("my.jsp");
> }
> 
> results in:
> 
> DEBUG - begin
> DEBUG - end
Maybe the ws call fails, and the call gets redirected again to the action bean 
(global exception handler, _sourcePage, some default handler method in a 
superclass)?

Try to set a breakpoint in myevent() and look in the Stacktrace where the calls 
are coming from. Maybe also track the returned ForwardResolution.

just a guess, 
Florian

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to