check to see if you are using image buttons <input type="image"> to
submit your forms.

these types of buttons submit your form by default.  if you define
javascript functions for these buttons to do your submitting that would
be the reason for the double submits your getting.  you can get around
this simply by returning false for the event like this:

<input type="image" onclick="doMySubmitFunction(); return false;">

this way, only your javascript function will be the one submitting.

just something to watch out for.

woodchuck


--- Wendy Smoak <[EMAIL PROTECTED]> wrote:

> From: "Barnett, Brian W." <[EMAIL PROTECTED]>
> 
> > We've spent the last couple of weeks enhancing our web app and now
> every
> > get/post to Tomcat from our web app is coming in twice.
> >
> > Any ideas on what I can check?
> 
> Do you have any Filters?  Check that chain.doFilter(...) is only
> called
> *once*.
> 
> -- 
> Wendy Smoak
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



                
__________________________________ 
Discover Yahoo! 
Use Yahoo! to plan a weekend, have fun online and more. Check it out! 
http://discover.yahoo.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to