Yes, well apparently I didn't read the NT instructions very well.  I saw the
tomcat.sh reference to CLASSPATH and proceeded to edit it, but failed to
recognize that Tomcat.bat (for NT) requires the change to introduce
Xerces.jar on line 105.  Changed:

   set CP=%CP%;%CLASSPATH%

to:

   set CP=c:\Tools\xerces-1_4_3\xerces.jar;%CLASSPATH%;%CP%

and everything works fine.  Just another one of those configuration
oversights.  Sorry for the hassle; thanks for the help.

  mh

-----Original Message-----
From: William Brogden [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 24, 2001 3:09 PM
To: [EMAIL PROTECTED]
Subject: Re: Newbie Install Question




"Hashimoto, Mike" wrote:
> 
> I will apologize in advance if this is such a common question.  Following
> installation, I am consistently getting the following error when just
trying
> to get the "list" from the rpcrouter:
> 
> C:\Projects\SOAP Test>java org.apache.soap.server.ServiceManagerClient
> http://localhost:8080/soap/servlet/rpcrouter list
> Ouch, the call failed:
>   Fault Code   = SOAP-ENV:Server.Exception:
>   Fault String = java.lang.NoSuchMethodError

Probably the parser your JVM is finding does not handle namespaces
correctly. It may be finding another parser before it gets to the
Xerces.jar on your classpath. For example, I had trouble with
an old parser on the JAVA_HOME\jre\lib\ext path.

-- 
WBB - [EMAIL PROTECTED]
Java Cert mock exams http://www.lanw.com/java/javacert/
Author of Java Developer's Guide to Servlets and JSP 
ISBN 0-7821-2809-2

Reply via email to