You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@ws.apache.org by Mike Agius <mi...@softology.co.uk> on 2002/08/01 16:50:10 UTC

Execution error

New to SOAP

Tomcat and SOAP set-up OK



Trying out a test of soap. Client app in JBuilder5. This code:

      System.out.println("\n\nCalling the SOAP Server to say Hello\n\n");
      URL url = new URL("http://localhost:8080/soap/servlet/rpcrouter");
      String name = "Mike";

      Call call = new Call();

The last statement givest the error:

Calling the SOAP Server to say Hello

 java.lang.NoClassDefFoundError: org/w3c/dom/Node
 	at soaptest.Frame1.<init>(Frame1.java:26)
 	at soaptest.TestHello.<init>(TestHello.java:11)
 	at soaptest.TestHello.main(TestHello.java:40)

I think I am missing this component from a JBuilder Library but I don't know
where it is.

TIA


Mike