Abanindra Nath Sarkar typed the following on 15:22 20/12/2002 +0530 > I am facing a typical problem. I am using Apache Tomcat that comes with Java Web >Services Developer Kit (JWSDK) to use a web service that is being deployed within a >Sun ONE app server. The server is in the same LAN with the machine where the Tomcat >is running. > >Problem is: > Whenever I tried to connect the web services (using a JSP page deployed in the >Tomcat) it's given the following error: > > cannot connect to server: Proxy authorization required > at >com.sun.xml.rpc.client.http.HttpClientTransport.invoke(HttpClientTransport.java:119) > at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:73) > >Even disabling the proxy configuration in the browser returning the same error.
If the the webapp on Tomcat can't connect to the web service on the app server, the browser's proxy settings won't have anything to do with it. I haven't done web services, but from a network admin point of view I'd guess there are two likely situations: a) The proxy is between Tomcat and the app server, in which case you need to configure you app on Tomcat to give a username and password to the proxy, or b) The proxy is not between them but your app is configured to use it, so you need to configure the app on Tomcat not to use the proxy. I have no clue about the details of configuring these, it depends on the toolkit you're using to access the web services from your Tomcat application. Kief -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
