I've re-installed Apache SOAP on JRun3.0 by the book and successfully got the "I can't do GET". I checked out the earlier emails I have regarding install issues and added the usual suite of .jars to the JRun classpath (exerces, mail, activation, soap). I've built the GetQuote example and am currently trying to deploy it. Each time I try this I get a server side error: This test assumes a server URL of http://localhost:8080/soap/servlet/rpcrouter Deploying the stockquote service... Ouch, the call failed: Fault Code = SOAP-ENV:Server.Exception: Fault String = java.lang.NoSuchMethodError My testit.cmd is included below. Has anyone got an idea where I'm going wrong? I get this error with every example I try. Thank you for any help. Craig. <testit.cmd> @echo off rem CLASSPATH starts empty set CLASSPATH=%CLASSPATH%;"C:\14 apache group\soap\soap-bin-2.2\soap-2_2" set CLASSPATH=%CLASSPATH%;"C:\14 apache group\soap\soap-bin-2.2\soap-2_2\lib\soap.jar" set CLASSPATH=%CLASSPATH%;"C:\14 apache group\xerces\Xerces-J-bin.1.4.0\xerces-1_4_0\xerces.jar" set CLASSPATH=%CLASSPATH%;"C:\14 apache group\soap\xmethods\quickstart\mail.jar" set CLASSPATH=%CLASSPATH%;"C:\14 apache group\soap\xmethods\quickstart\activation.jar" echo %CLASSPATH% echo . echo This test assumes a server URL of http://localhost:8080/soap/servlet/rpcrouter echo Deploying the stockquote service... java -cp %CLASSPATH% org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/servlet/rpcrouter deploy DeploymentDescriptor.xml echo . echo Verify that it's there java -cp %CLASSPATH% org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/servlet/rpcrouter list echo . echo Running the stockquote test java -cp %CLASSPATH% samples.stockquote.GetQuote http://localhost:8080/soap/servlet/rpcrouter IBM echo . echo Undeploy it now java -cp %CLASSPATH% org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/servlet/rpcrouter undeploy urn:xmltoday-delayed-quotes echo . echo Verify that it's gone java -cp %CLASSPATH% org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/servlet/rpcrouter list --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]
