Get the stackTrace element from the server and see which class it can't
find. Assuming you're using the DOMFaultListener:
System.out.println(fault.getFaultString());
Vector details = fault.getDetailEntries();
for (Iterator i = details.iterator(); i.hasNext(); ) {
Element e = (Element)i.next();
System.out.println(e.getFirstChild().getNodeValue());
}
That will tell you what' missing, so you can fix the server classpath.
-Brett
----- Original Message -----
From: "Serfontein, Jan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 09, 2001 11:09 AM
Subject: SOAP Server exception on SOLARIS
> Hi all,
>
> I have experimented with SOAP on Windows 2000 and all seems to be working
> well.
> Now I am installing it on SOLARIS but get an error in deploying the
> examples:
>
> Fault Code = SOAP-ENV:Server.Exception:
> Fault String = java.lang.NoSuchMethodError
>
> The web screen with the SOAP admin I can see well. I can also get the
> message:
> Sorry, I don't speak via HTTP GET- you have to use HTTP POST to talk
> to me.
> So all seems well except when I start to deploy the client. Even if I try
to
> list the services from the command line client
>
> java org.apache.soap.server.ServiceManagerClient
> http://myhost:8080/soap/servlet/rpcrouter list
>
> I get the above fault error from the server. Has anybody had a similar
error
> where it seems to pass the installation tests but you cannot deploy any
> samples?
>
> thanks in advance
> Jan