that's another thing, where DOES the stack trace go? should i direct it to a 
file?
any hints?

S


>From: "Rajiv Ramanasankaran" <[EMAIL PROTECTED]>
>Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
>To: "Tomcat Users List" <[EMAIL PROTECTED]>
>Subject: RE: Error with multipartParser
>Date: Wed, 9 Oct 2002 23:03:24 -0500
>
>Can you give the full exception stacktrace?? That might help us figure it
>out. try e.printStackTrace() instead of creating the printwrite and 
>printing
>to standard error. Send the tomcat log files too.
>Rajiv
>
> > -----Original Message-----
> > From: Sam Seaver [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, October 09, 2002 2:09 PM
> > To: [EMAIL PROTECTED]
> > Subject: Error with multipartParser
> >
> >
> > I cannot work this out as I get no more in my error messages
> > despite trying
> > to use the usual ways of debugging the bean.  Basically I'm using a bean
> > that extends HttpServlet and uses Hunter's MultipartParser, and the 
>error
> > ALWAYS occurs when I try to create an instance of the parser...
> >
> > Error:
> >
> > root cause
> >
> > javax.servlet.ServletException:
> > com/oreilly/servlet/multipart/MultipartParser
> >     at
> > org.apache.jasper.runtime.PageContextImpl.handlePageException(Page
> > ContextImpl.java:497)
> >
> > Code:
> >
> > import java.io.*;
> > import java.util.*;
> > import javax.servlet.http.*;
> > import javax.servlet.*;
> >
> > import com.oreilly.servlet.*;
> > import com.oreilly.servlet.multipart.*;
> >
> > public class SimpleBean extends HttpServlet {
> >
> >     private String fileName;
> >     private String name;
> >     private String type;
> >     private String output;
> >
> >     public SimpleBean(){
> >     fileName="";
> >     name="";
> >     type="";
> >     output="";
> >     }
> >
> >     public void setFileName(String x){
> >     fileName=x;
> >     }
> >
> >     public void setName(String x){
> >     name=x;
> >     }
> >
> >     public void setType(String x){
> >     type=x;
> >     }
> >
> >     public void setOutput(String x){
> >     output=x;
> >     }
> >
> >     public void appendOutput(String x){
> >     output=output+x;
> >     }
> >
> >     public String getFileName(){
> >     return fileName;
> >     }
> >
> >     public String getName(){
> >     return name;
> >     }
> >
> >     public String getType(){
> >     return type;
> >     }
> >
> >     public String getOutput(){
> >     return output;
> >     }
> >
> >     public void doPost(HttpServletRequest req, HttpServletResponse res)
> >     throws ServletException, IOException{
> >     setOutput("Demo Parser Upload Bean");
> >     res.setContentType("text/html");
> >     ServletOutputStream out = res.getOutputStream();
> >
> >     try{
> >         MultipartParser mpParser = new MultipartParser(req,
> > 10*1024*1024);
> >     }catch (Exception e){
> >         StringWriter sw = new StringWriter();
> >         PrintWriter pw = new PrintWriter(sw);
> >         e.printStackTrace(pw);
> >
> >     }
> >
> >
> >
> >     }
> > }
> >
> >
> >
> > "JC Rules"
> >
> > _________________________________________________________________
> > Chat with friends online, try MSN Messenger: http://messenger.msn.com
> >
> >
> > --
> > To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
>
>
>
>--
>To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
>
>
>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>


"JC Rules"

_________________________________________________________________
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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

Reply via email to