Oracle Application Server Web Services Proxy API Reference
10g (9.0.4)

B10395-01

oracle.j2ee.ws.client
Interface WebServiceProxy


public interface WebServiceProxy

WebServiceProxy can be used to dynamically invoke an operation defined in a WSDL.


Method Summary
 WebServiceMethod getMethod(java.lang.String szOperationName)
          Returns a WebServiceMethod, which can be use to invoke web service methods.
 WebServiceMethod getMethod(java.lang.String szOperationName, java.lang.String szInputName, java.lang.String szOutputName)
          Returns a WebServiceMethod, which can be use to invoke web service methods.
 PortType getPortType()
          Returns a structure describing the WSDL portType used by this proxy.
 org.apache.soap.util.xml.XMLJavaMappingRegistry getXMLMappingRegistry()
          Returns the SOAP mapping registry used by the WebServiceProxy.

 

Method Detail

getXMLMappingRegistry

public org.apache.soap.util.xml.XMLJavaMappingRegistry getXMLMappingRegistry()
                                                                      throws WebServiceProxyException
Returns the SOAP mapping registry used by the WebServiceProxy. Clients of the WebServiceProxy can use the mapping registry to query for xml to/from java type mapping as well as extend the mapping registry with new map definitions.

getPortType

public PortType getPortType()
                     throws WebServiceProxyException
Returns a structure describing the WSDL portType used by this proxy.

getMethod

public WebServiceMethod getMethod(java.lang.String szOperationName,
                                  java.lang.String szInputName,
                                  java.lang.String szOutputName)
Returns a WebServiceMethod, which can be use to invoke web service methods.
Parameters:
szOperationName - name of the WSDL operation to be executed.
szInputName - name of the wsdl:input tag for the operation to be executed.
szOutputName - name of the wsdl:output tag for the operation to be executed.
Returns:
WebServiceMethod, or null if not found

getMethod

public WebServiceMethod getMethod(java.lang.String szOperationName)
Returns a WebServiceMethod, which can be use to invoke web service methods. This signature can be used for non-overloaded WSDL operations.
Parameters:
szOperationName - name of the WSDL operation to be executed.
Returns:
WebServiceMethod, or null if not found

Oracle Application Server Web Services Proxy API Reference
10g (9.0.4)

B10395-01

Copyright © 2002, 2003 Oracle Corporation. All Rights Reserved.