Hi,
I'm new to using the Axis-Soap package. I tried executing the TestClient for the echo
service by calling the following URL
http://nagoya.apache.edu:5049/axis/services/eho and I get the following exception:
java.net.UnknownHostException: nagoya.apache.org
When I deploy the same service in samples on my local tomcat 4, the client works fine.
So I thought I probably need to set the proxy settings inside the client to get
throught the firewall.
System.setProperty("proxySet", "true");
System.setProperty("proxyHost", "proxy");
System.setProperty("proxyPort", "8080");
This still does not work...
I added a <URL>.openConnection() method in the beginning of the client program.
The program connects to the same URL and returns HTTP_OK, but the service still
complains about the same
unknown host exception. Any ideas / suggestions ????
Jie