soaprouter is giving Internal server error

2003-06-23 Thread Ramneek Handa
Hi all, I'm getting a 500 Internal Server Error when I'm trying to invoke the following SOAP_URL @ http://localhost:/soap/servlet/soaprouter. My soap.war contains the service implementation (including the web.xml etc.) I'm deploying on OC4J (Oracle 9iAS). I've even tried extracting the soap.ja

Re: Deployment problems.....please help

2003-06-23 Thread Rizwan . Ahmed
I have an explicit reference to WEB-INF/soap.xml in web.xml. There is also an explicit reference to WEB-INF/services.xml in soap.xml. Soap.xml, services.xml are in the WEB-INF/ directory as well. If my understanding is correct: the way to integrate a soap based web service into an existing appli

RE: SOAP/Tomcat

2003-06-23 Thread Rob McGrath
Gotcha. You are right on all assumptions. Thought something like this would be the answer; wanted to hear from an expert. Thank you sir! -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2003 1:49 PM To: [EMAIL PROTECTED] Subject: RE: SOAP/Tomcat Thi

RE: SOAP/Tomcat

2003-06-23 Thread Scott Nichol
This is an error that would come during compilation, so I presume it is coming from a JSP you have written or modified, right? What you need to do is specify the full class with namespace when declaring and instantiating variables. For example, instead of Vector params = new Vector(); params.

Re: Deployment problems.....please help

2003-06-23 Thread Scott Nichol
Do you have an explicit reference from web.xml to WEB-INF/soap.xml? If not, the default will be used, and soap.xml should be in the directory above WEB-INF. Likewise, if soap.xml does not contain an explicit reference to services.xml, the default will be used, which is deployedServices.xml in

RE: SOAP/Tomcat

2003-06-23 Thread Rob McGrath
--- Begin Message --- I have a new problem related to this implementation (see previous email/solution for catch-up, but don't think its needed). I've got the server up and the applcation and server infrastructure up in development (where our developers are testing it, and playing around w/ new fun

Re: Deployment problems.....please help

2003-06-23 Thread Rizwan . Ahmed
Hi Scott, web.xml is under WEB-INF (sorry for the bad formatting). soap.xml and deployedServices.xml are in the same directory as well. I'm still having problems during deployment. Any ideas? Thanks Rizwan