Are you using Internet Explorer in your tests? I've had some double-post
experiences using IE before... For the webservice part, if it is querying
another server, I can't see the relation between the ws and your problem.

Is this the only code in your troublesome action?
public Resolution myevent() {
    logger.debug("begin");
    results = webservice.getResults();
    logger.debug("end");
    return new ForwardResolution("my.jsp"); 
}

Are you using a custom handleValidationErrors? Have you debugged it step by
step? Can you log the begin and end with a timestamp just to see if they are
really "ordered"? (BEGIN END BEGIN END)



-----Mensaje original-----
De: Randy Jones [mailto:[email protected]] 
Enviado el: jueves, 29 de enero de 2009 18:49
Para: [email protected]
Asunto: [Stripes-users] narrowed down

Narrowed down this problem. If I get my xml from a server (case 1) the
action
bean is called twice. If I get the xml from disk (case 2) the action bean is
called only once. There are no errors in either case. Just this strange
behavior.

case 1:
URL solr = new URL(s);          
InputSource in = new InputSource(new InputtStreamReader(solr.openStream()));

case 2:         
InputSource in = new InputSource(new InputStreamReader(new
FileInputStream("/my.xml")));





----------------------------------------------------------------------------
--
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


------------------------------------------------------------------------------
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