Modifying an existing proxy service configuration
Modify the configuration details for a proxy service.
About this task
A proxy service has no actual target services and therefore no WSDL that the gateway can use to configure the service invocation. A generic template WSDL file is used to configure the basic parameters for the invocation call, but you can override the default for a given proxy service by supplying your own equivalent template.
For an overview of proxy operation, see JAX-RPC handlers and proxy operation. To modify an existing proxy service configuration, complete the following steps:
Procedure
Results
What to do next
Ensure that all service requesters append an
operationMode query string parameter to the address for the proxy service. The
value of this parameter is either oneway or requestResponse, and
the default is requestResponse. For example:
- For HTTP operation, if the web address of the proxy service is
then requesting clients indicate that they are sending a one-way request by using the following URL:http://host_name:port_number/wsgwsoaphttp1/soaphttpengine /your_bus/ProxyService/ProxyServiceInboundPort
http://host_name:port_number/wsgwsoaphttp1/soaphttpengine /your_bus/ProxyService/ProxyServiceInboundPort?operationMode=oneway
- For JMS operation, if the JMS address of the proxy service is
then requesting clients indicate that they are sending a one-way request by using the following URL:jms:/queue?destination=jndi_queue&connectionFactory= jndi_factory&targetService=your_bus/ProxyService/ProxyServiceInboundPort
jms:/queue?destination=jndi_queue&connectionFactory= jndi_factory&targetService= your_bus/ProxyService/ProxyServiceInboundPort&operationMode=oneway