For some reason I get this:
java.lang.NoClassDefFoundError: org/w3c/dom/Node
at soap_client.classLogin.login(classLogin.java:20)
at soap_client.classLogin.main(classLogin.java:56)
Exception in thread "main"
--
Line 20 is:
Call call = new Call( );
and line 56 is a call to the method that contains line 20
--
My imports are
package soap_client;
import java.net.URL;
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.Vector;
import org.apache.soap.Constants;
import org.apache.soap.Fault;
import org.apache.soap.SOAPException;
import org.apache.soap.rpc.Call;
import org.apache.soap.rpc.Parameter;
import org.apache.soap.rpc.Response;
Any ideas guys? Thank you.
Oleg