Ralf Bierig wrote:
> 
> I got the following error message, when I try to start
> my SOAP client. I dont know what this means. I have
> programmed my client originally for useage with Apache
> SOAP 2.0, but it should work woth SOAP 2.2 as well,
> because I think SOAP 2.2 is down compatible....or I am
> wrong???
> 
> Does somebody know more?
> 
> ---- begin of error message -----
> D:\tomcat\bin>java mypackage.myclient
> Exception in thread "main" java.lang.NoSuchMethodError
>         at
> org.apache.soap.util.xml.QName.<init>(QName.java:80)
>         at

This common problem is due to your JVM finding a version
of an XML parser that does not conform to DOM 2 - that is,
it is missing namespace support. 

One parser that works with SOAP 2.2 is the JAXP 1.1 package
from Sun - since that is likely to become a part of the
normal Java language release you might as well get used
to it.

Be sure to remove all other parsers from your classpath.
Look in JAVA_HOME\jre\lib\ext  especially


-- 
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