When I send the following command , all is well and works.

java SOAPClient http://development:85/Manager.WSDL
<http://development:85/Manager.WSDL>

However , when I want to monitor the traffic using TcpTunnelGui as follows :

java SOAPClient http://localhost:8001 <http://localhost:8001>

java org.apache.soap.util.net.TcpTunnelGui 8001 development 85


I get the following error :

HTTP/1.1 400 Bad RequestServer: Microsoft-IIS/5.0Date: Thu, 10 Jan 2002
23:35:05 GMTContent-Type: text/htmlContent-Length:
87<html><head><title>Error</title></head><body>The parameter is incorrect.
</body></html>

So it's all talking but it seems to the wrong place.

How do I add the /Manager.WSDL part to the TcpTunnelGui command line ?

----

You don't, you add it to the URL you pass to your SOAPClient. i.e.
java SOAPClient http://localhost:8001/Manager.WSDL etc, assuming you're
running TcpTunnelGui on localhost

Thanks

Reply via email to