I am trying to run a
SOAP request on
Tomcat and I am getting a error.
I have j2sdk1.4, Tomcat 4.0.3, SOAP 2.2, Xerces 1.2.3, jaf 1.0.1, javamail 1.2.
The Paths are set as -
CLASSPATH -
C:\j2sdk1.4.0;C:\j2sdk1.4.0\src;C:\j2sdk1.4.0lib;C:\j2sdk1.4.0\lib\tools.jar;C:\Tomcat\bin;C:\Tomcat\lib;C:\Tomcat\common\lib;C:\Tomcat\common\lib\servlet.jar;C:\WebServices\xerces-1_2_3\xerces.jar;C:\WebServices\soap-2_2\lib\soap.jar;C:\WebServices\soap-2_2\src\org;C:\Tomcat\lib\ant.jar;C:\Tomcat\lib\jasper.jar;C:\WebServices\javamail-1.2\mail.jar;C:\WebServices\jaf-1.0.1\activation.jar;C:\Tomcat\lib\servlet.jar;C:\Tomcat\lib\webserver.jar;C:\Tomcat\lib\xml.jar;
JAVA_HOME -
C:\j2sdk1.4.0;
PATH -
C:\j2sdk1.4.0\bin;
SOAP_LIB -
C:\WebServices\soap-2_2\lib
The server.xml file is edited as follows -
<Context path="/manager" docBase="manager" debug="0" privileged="true"/>
<Context path="/soap" docBase="C:/WebServices/soap-2_2/webapps/soap" debug="0" reloadable="true" crossContext="true"/>
<!-- Tomcat Examples Context -->
<Context path="/examples" docBase="examples" debug="0"
reloadable="true" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="localhost_examples_log." suffix=".txt" timestamp="true"/>
Now when I enter in Browser -
http://localhost:8080/soap On -
http://localhost:8080/soap/admin/index.html and click on any of the 3 buttons, it gives me this error
Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error
--------------------------------------------------------------------------------
type Exception report
message Internal Server Error
description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: org/apache/soap/server/ServiceManager
Thanks,
Devavrat