Thomas
Don't do Java but the best tool to debug web services (or any TCP
comms) is TcpTrace
www.pocketsoap.com
Peter
On Mon, 05 Apr 2004 09:51:43 +0200, Thomas Esche
<[EMAIL PROTECTED]> wrote:
>Hi,
>has someone successfully used a Cache WebService with JAVA?
>I tried to use the following source code (example with placeholders):
>
>String endpoint = <LOCATION>/<CLASS>
>Service service = new Service();
>Call call = (Call) service.createCall();
>call.setTargetEndpointAddress( new java.net.URL(endpoint) );
>call.setOperationName(new QName(<NAMESPACE>, <METHOD>));
>String test = (String) call.invoke( new Object[] {"abc"});
>
>The following error appears:
>503: "Service Unavailable"
>
>Is someone able to help?
>Thanking you in advance.
>Thomas