You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by ge...@ws.apache.org on 2004/12/31 15:57:25 UTC

[Apache Web Services Wiki] New: FrontPage/Axis/AxisProxy

   Date: 2004-12-31T06:57:24
   Editor: GeorgBeier
   Wiki: Apache Web Services Wiki
   Page: FrontPage/Axis/AxisProxy
   URL: http://wiki.apache.org/ws/FrontPage/Axis/AxisProxy

   no comment

New Page:

##language:en
== Sending SAP Requests through a HTTP Proxy ==
To send all outbound SOAP requests from your client through wwwcache.yourdomain.net on port 3128, set the Java system properties http.proxyHost and http.proxyPort from your client code:
{{{
  System.setProperty("http.proxyHost", "wwwcache.yourdomain.net"); 
  System.setProperty("http.proxyPort", "3128"); 
}}}
You can set these system properties without modifying your client code by using the Java -D command line option when you start your Java application.
{{{
  >java -Dhttp.proxyHost=wwwcache.yourdomain.net -Dhttp.proxyPort=3128 myPackage.MyApp
}}}
Found on [http://www.mindreef.com/products/1.0/help/proxydetails.html].