Configuring a web services client to access resources using a web proxy

You can configure a web services client to access resources through a web proxy server.

About this task

You can configure a web services client to access resources by connecting to a web proxy server either with or without requiring authentication, just like other HTTP client applications. You can configure HTTP transport properties for a web service acting as a client to another web service. The HTTP transport values you configure are used at runtime. Configure the HTTP transport values in one of the following ways:
  • Configure the properties using the Java™ Virtual Machine (JVM) custom property panel in the administrative console.
  • Configure the properties using the wsadmin command-line tool.
  • Configure the properties with an assembly tool.
  • Configure the properties programmatically using the application programming model

If you want to programmatically configure the properties using the Java API XML-based Remote Procedure Call (JAX-RPC) programming model or the Java API for XML Web Services (JAX-WS) programming model, review the JAX-RPC or JAX-WS specifications.

For a complete list of the supported standards and specifications, see the web services specifications and API documentation.

For Java API XML-based Remote Procedure Call (JAX-RPC) web services, the HTTP transport values take the following precedence order with the programmatic method being the most significant:
  1. values specified programmatically on the Call object
  2. values defined in the deployment descriptors in each portQNameBinding attribute using an assembly tool
  3. values defined as JVM system properties

For Java API for XML Web Services (JAX-WS) web services, the HTTP transport values you specify in your policy set definitions take precedence over the values defined programmatically. Subsequently, the HTTP transport values you define programmatically take precedence over the values defined as JVM system properties. For JAX-WS applications, deployment descriptors are not supported. Use annotations to specify deployment information.

Procedure

  1. Configure the HTTP or HTTPS proxyHost and proxyPort transport properties for the web services in one of the following ways:
    • using the Java Virtual Machine (JVM) custom property panel in the administrative console
    • using the wsadmin command-line tool
    • using assembly tools
    • programmatically using the application programming model
    To access the web proxy over HTTP:
    • http.proxyHost
    • http.proxyPort
    To access the web proxy over HTTPS:
    • https.proxyHost
    • https.proxyPort
  2. If HTTP proxy authentication is required for your web services client, then additionally configure the HTTP or HTTPS proxyUser and proxyPassword transport properties using one of the methods specified in the previous step.
    To access the web proxy over HTTP:
    • http.proxyUser
    • http.proxyPassword
    To access the web proxy over HTTPS:
    • https.proxyUser
    • https.proxyPassword
  3. If you are specifying the HTTP or HTTPS properties programmatically, set the properties in the Stub or Call instance to configure the HTTP proxy authentication.
    1. You can set the HTTP or HTTPS properties programmatically using the following web services constants:
      com.ibm.wsspi.webservices.Constants.HTTP_PROXYHOST_PROPERTY
      com.ibm.wsspi.webservices.Constants.HTTP_PROXYPORT_PROPERTY
      com.ibm.wsspi.webservices.Constants.HTTP_PROXYUSER_PROPERTY
      com.ibm.wsspi.webservices.Constants.HTTP_PROXYPASSWORD_PROPERTY
      com.ibm.wsspi.webservices.Constants.HTTPS_PROXYHOST_PROPERTY
      com.ibm.wsspi.webservices.Constants.HTTPS_PROXYPORT_PROPERTY
      com.ibm.wsspi.webservices.Constants.HTTPS_PROXYUSER_PROPERTY
      com.ibm.wsspi.webservices.Constants.HTTPS_PROXYPASSWORD_PROPERTY
  4. Use tunneling in the web services transport layer to enable the Web services client to access resources through a Web proxy server. Set the Java virtual machine (JVM) property, com.ibm.ws.websvcs.transport.enableProxyTunnel to a value of true.

Results

You have configured your web services client to use a Web proxy server to access resources.

You can optionally set the http.nonProxyHosts property to specify the host names of machines to which requests will not be sent through the proxy server. Any requests invoked by the client application that are sent to a host whose name is contained in this property will not pass through the proxy server. This property applies for both HTTP and HTTPS connections. To learn more about the http.nonProxyHosts property and other HTTP properties that you can configure, read about HTTP transport custom properties for web services applications.

Example

The following code allows you to configure the HTTP proxy programmatically:
import com.ibm.wsspi.webservices.Constants
Properties prop = new Properties();
InitialContext ctx = new InitialContext(prop);
Service service = (Service)ctx.lookup("java:comp/env/service/StockQuoteService");
QName portQname = new QName("http://httpchannel.test.wsfvt.ws.ibm.com", "StockQuoteHttp");
StockQuote sq = (StockQuote)service.getPort(portQname, StockQuote.class);
((javax.xml.rpc.Stub) sq)._setProperty(Constants.HTTP_PROXYHOST_PROPERTY, "proxyHost1.ibm.com");
((javax.xml.rpc.Stub) sq)._setProperty(Constants.HTTP_PROXYPORT_PROPERTY, "80");
Note: For JAX-WS, the following code allows you to specify the HTTP or HTTPS properties programmatically with RequestContext of BindingProvider:
//Set the https.proxyHost as a property on the RequestContext.
BindingProvider bp = (Binding Provider)port;
bp.getRequestContext().put("https.proxyHost", "proxyHost1.ibm.com");
bp.getRequestContext().put("https.proxyPort", "80");