At 05:46 PM 7/13/2001 -0700, Irfan Mohammed wrote:
>Im trying to install Soap 2.2 on IBM VAJ 3.5.2 using the websphere test
>environment as the servlet container. While i can view the index page and
>also contact the rpcrouter i am not able to view the deploy, list and
>undeploy pages. Here is the error Im getting. Any help would be
>appreciated. I do have the soap.jar in my classpath as well as part of my
>package....
>An error has occured while processing
>request:http://localhost:8080/soap/admin/list.jsp
>Message:Server caught unhandled exception from servlet [jsp]
>Target Servlet: jsp
>StackTrace:
>----------------------------------------------------------------------------
>----
>Root Error-1: Cannot create bean of class
>org.apache.soap.server.ServiceManager
>javax.servlet.ServletException: Cannot create bean of class
>org.apache.soap.server.ServiceManager
Generated servlets from JSP's tend to include this exception, e.g.
>try {
> cart = (sessions.DummyCart) Beans.instantiate(this.getClass().getClassLoader(),
>"sessions.DummyCart");
>} catch (Exception exc) {
> throw new ServletException (" Cannot create bean of class "+"sessions.DummyCart");
>}
which is from one of the Tomcat example JSPs. In this case you're getting it from
list.jsp's generated servlet, and neither SOAP 2.2 nor SOAP 2.1 load the ServiceManager
as a bean. Is it possible that you're still using the SOAP 2.0 list.jsp file here?
Or am I wildly off again?
Tom Myers