"Page not found" is browser-speak for "your servlet blew chunks".

Take a look at the window Tomcat is running in: unless you wrote a good deal
of code to avoid it, you should see a stack trace which tells you where your
code broke.

If there's no stack trace, chances are your servlet is locked up.  Try
hitting Control+Break to see where it's stuck.  (Several threads will be in
Object.wait(): those are just waiting around for something useful to happen,
and you can ignore them.  Just look at threads with your own code somewhere
in the stack.)

                                        -- Bill K. 

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 12, 2001 7:23 AM
To: [EMAIL PROTECTED]
Subject: multipart/form-data


Hello, 
I still have the following problem : 
I post some data to a servlet with enctype=multipart/form-data 
What ever file I pass to the <input type=file ...> the doPost() of the
servlet will proced but 
when the file is bigger than a very small amout of space (about 30ko) though
the servlet proceds my request, my navigator will show page not found.
I find this very strange and wonder if it could not be a tomcat (may be
apache) configuration purpose. 
If I'm asking the wrong mailing list please tell because I'm not cross
something (cannot remember the english for this) over many mailing list.
Thanks 
Sebastien 

Reply via email to