I think you have to put the jar file into either
$CATALINA_HOME/lib or $CATALINA_HOME/common/lib
> Hi guys,
> I am getting the following error:
>
> javax.servlet.ServletException: No suitable driver
>at
> org.apache.jasper.runtime.PageContextImpl.handlePageException
(PageContextImpl.java:
I did the following and it works for me:
MultipartRequest m = new MultipartRequest(request, ".", 1048576);
m.getParameter(...);
James
> You need to use the new BinaryRequest class that he creates to get all
> your form data, including strings.
>
> Brandon
>
> -Original Message-
> From:
If you don't have a copy but would like to have a peek at the examples,
here's the link
http://www.servlets.com/jservlet2/examples/index.html
> It's an O'Reilly book by Hunter & Crawford. The O'Reilly servlet
> package (com.oreilly.servlet) is the code
> that goes along with the book.
>
>
> ---