Re: Fw: POST-Data from Form can not be read-out

2006-06-08 Thread Marc Farrow
Perhaps that is an issue for a jsp mailing list... Thanx in advance Ön -Ursprüngliche Nachricht- Von: Jon Wingfield [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 7. Juni 2006 17:31 An: Tomcat Users List Betreff: Re: Fw: POST-Data from Form can not be read-out What happens when you remove

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Bill Barker
ht- Von: Jon Wingfield [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 7. Juni 2006 17:31 An: Tomcat Users List Betreff: Re: Fw: POST-Data from Form can not be read-out What happens when you remove the enctype attribute from your form? The enctype you specified is for binary uploads. Tomcat do

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Oliver Enders
t; > enctype="multipart/form-data"> > fl > > > ><% >} else { >%> > kein fl ><% >} >%> > > > > > The pages is submitted to itself. flf is used to define two

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Marc Farrow
Feld: <%=name%> > <% > } > %> > > ><%=modeDisp%> Test Request > (<%=m%>) > ><% >if(flf.equals("1")){ >%> > enctype="multipart/form-data"> > fl > > > >

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Jon Wingfield
t;)){ %> enctype="multipart/form-data"> fl <% } else { %> kein fl <% } %> The pages is submitted to itself. flf is used to define two different contents. Thanx in advance Ön - Original Message -

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Oliver Enders
quest (<%=m%>) <% if(flf.equals("1")){ %> enctype="multipart/form-data"> fl <% } else { %> kein fl <% } %> The pages is submitted to itself. flf is used to define two different contents. Thanx i

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Marc Farrow
This could be any number of issues from browser bugs on. What browser are you using? Also, can you post the rendered HTML page that is submitting the request to the servlet? On 6/7/06, Oliver Enders <[EMAIL PROTECTED]> wrote: Hy List, I have a problem concerning submitting form-data by

Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Oliver Enders
Hy List, I have a problem concerning submitting form-data by using POST. If I send the form using GET, the content of the form can be read out using: request.getParameter("xyz"); If I change to POST, the parameters can not be read out. I´m using am Tomcat 4.1. Any Ideas ? Suggestions ?