Re: java.lang.NoSuchMethodError

2001-09-28 Thread Peoter Veliki
This is the classic error. It means that you have two classes in your classpath that are the same except that one has some methods that the other doesn't. You call the method, but it finds the class that doesn't have the method first. You need to put xerces.jar first in your classpath. -

soapifying a non HTTP Servlet?

2001-09-21 Thread Peoter Veliki
I have some servlets that I've been given and I've been asked to soapifythem.  Is this possible?  Any special steps?  In this case the servlet class(derived from GenericServlet) does not return anything (void) but passesback information through the service method arguments.  Can this be don

Re: java.lang.NoSuchMethodError

2001-09-19 Thread Peoter Veliki
Go into the tomcat.bat file and put xerces.jar at the front of your classpath. To make sure the changes you've made are correct, take a look at the output and check the classpath to make sure that xerces.jar is before jaxp.jar. - Original Message - From: "Hede, Bhagyesh" <[EMAIL PROTECT

help with error: ServiceManagerClient rpc-router-url list

2001-09-17 Thread Peoter Veliki
When i try and test my setup by calling java org.apache.soap.server.ServiceManagerClient rpc-router-url list   I get:   Ouch, the call failed:  Fault Code   = SOAP-ENV:Server.Exception:  Fault String = java.lang.NoSuchMethodErrorDone!   I believe I have successfully placed xerces at the b

please help with error deploying

2001-09-13 Thread Peoter Veliki
This is from the IBM WSTK tutorial:   set ACTIVATION_CP="F:\Java\jaf1_0_1\jaf-1.0.1\activation.jar"set   MAIL_CP="F:\Java\javamail-1_2\javamail-1.2\mail.jar"set XERCES_CP="F:\Java\Xerces-J-bin.1.4.3\xerces-1_4_3\xerces.jar"set   SOAP_CP="F:\Apache\soap-bin-2.2\soap-2_2\lib\soap.j

Re: which directory do the jar files go?

2001-09-13 Thread Peoter Veliki
that I don't have to worry about this problem?   Thanks again - Original Message - From: Peoter Veliki To: [EMAIL PROTECTED] Sent: Thursday, September 13, 2001 1:35 PM Subject: which directory do the jar files go?   If I wanted to place the jar

which directory do the jar files go?

2001-09-13 Thread Peoter Veliki
  If I wanted to place the jar files (mail.jar,activation.jar, etc...) in a folder in Tomcat instead of adding them to the classpath, which folder would I add them to?  In other words, which classloader do I want to load them?   Server Classloader:  lib/container Webapp Classloader: