| java.lang.Object com.sun.portal.providers.simplewebservice.WebServiceDescriptor
WebServiceDescriptor | public class WebServiceDescriptor (Code) | | The WebServiceDescriptor encapsulates all the information
required to invoke a method on a given web service.
|
Constructor Summary | |
public | WebServiceDescriptor(String wsdlURL, String serviceName, String portName, String methodName, String endPointURL, String inputNamespace, String outputNamespace, String inputEncodingStyle, String outputEncodingStyle, String inputEncodingStyleURI, String outputEncodingStyleURI, ParameterDescriptor[] input, ParameterDescriptor[] output, String soapBindingStyle, String soapBindingTransport, String soapAction, String documentation) Default constructor. |
DOCUMENT_SOAP_BINDING_STYLE | final public static String DOCUMENT_SOAP_BINDING_STYLE(Code) | | |
RPC_SOAP_BINDING_STYLE | final public static String RPC_SOAP_BINDING_STYLE(Code) | | |
WebServiceDescriptor | public WebServiceDescriptor(String wsdlURL, String serviceName, String portName, String methodName, String endPointURL, String inputNamespace, String outputNamespace, String inputEncodingStyle, String outputEncodingStyle, String inputEncodingStyleURI, String outputEncodingStyleURI, ParameterDescriptor[] input, ParameterDescriptor[] output, String soapBindingStyle, String soapBindingTransport, String soapAction, String documentation)(Code) | | Default constructor.
Parameters: wsdlURL - the WSDL URL for the web service. Parameters: serviceName - the name of the web service to invoke. Parameters: portName - the name of the port associated with the web service. Parameters: methodName - the name of the method to invoke on the web service. Parameters: endPointURL - the end point URL for the web service. Parameters: inputNamespace - the input namespace for the web service. Parameters: outputNamespace - the output namespace for the web service. Parameters: inputEncodingStyle - the input encoding style (eg- "encoded" or "literal")for the web service. Parameters: outputEncodingStyle - the output encoding style (eg- "encoded" or "literal")for the web service. Parameters: inputEncodingStyleURI - the input encoding style URI for the web service. Parameters: outputEncodingStyleURI - the output encoding style URI for the web service. Parameters: input - the array of input ParameterDescriptors for the web service. Parameters: output - the output ParameterDescriptor for the web service. Parameters: soapBindingStyle - the SOAP Binding Style. Parameters: soapBindingTransport - the SOAP Binding Transport. Parameters: soapAction - the SOAP Action. Parameters: documentation - documentation about the method to invoke on the web service. |
getDocumentation | public String getDocumentation()(Code) | | Get the documentation (if avilable) on the method to
be invoked on the web service.
documentation on the web service method beinginvoked. |
getEndPointURL | public String getEndPointURL()(Code) | | Get the end point URL for the web service call.
the end point URL for the web service call. |
getInputEncodingStyle | public String getInputEncodingStyle()(Code) | | Get the input encoding style (eg- "literal" or "encoded"
to the web service call.
the input encoding sytle applicable to theweb service call. |
getInputEncodingStyleURI | public String getInputEncodingStyleURI()(Code) | | Get the input encoding style URI for the web service call.
the input encoding sytle URI applicable to theweb service call. |
getInputNamespace | public String getInputNamespace()(Code) | | Get the input namespace for the web service.
the input namespace for the web service. |
getInputParams | public ParameterDescriptor[] getInputParams()(Code) | | Get the input parameters required to invoke the
method on the web service.
an array of input parameters for theweb service method call. |
getMethodName | public String getMethodName()(Code) | | Get the name of the method to invoke on
the web service.
the method name for the web service. |
getOutputEncodingStyle | public String getOutputEncodingStyle()(Code) | | Get the output encoding style (eg- "literal" or "encoded"
to the web service call.
the output encoding sytle applicable to theweb service call. |
getOutputEncodingStyleURI | public String getOutputEncodingStyleURI()(Code) | | Get the output encoding style URI for the web service call.
the output encoding sytle URI applicable to theweb service call. |
getOutputNamespace | public String getOutputNamespace()(Code) | | Get the output namespace for the web service.
the output namespace for the web service. |
getOutputParams | public ParameterDescriptor[] getOutputParams()(Code) | | Get the output param used when returning results
from the method invocation on the web service.
the output parameter for the web service method call. |
getPortName | public String getPortName()(Code) | | Get the web service port name.
the port name for the web service. |
getSOAPAction | public String getSOAPAction()(Code) | | Get the SOAP Action for the Binding operation.
the SOAP Action. |
getSOAPBindingStyle | public String getSOAPBindingStyle()(Code) | | Get the SOAP Binding Style.
the SOAP Binding Style. |
getSOAPBindingTransport | public String getSOAPBindingTransport()(Code) | | Get the SOAP Binding Transport.
the SOAP Binding Transport. |
getServiceName | public String getServiceName()(Code) | | Get the web service name.
the name for the web service. |
getWSDLURL | public String getWSDLURL()(Code) | | Get the WSDL URL for the web service.
the WSDL URL for the web service. |
isOneWayOperation | public boolean isOneWayOperation()(Code) | | |
setOneWayOperation | public void setOneWayOperation(boolean oneway)(Code) | | |
toString | public String toString()(Code) | | Get the string representation of this WebServiceDescriptor.
the string representation of this WebServiceDescriptor. |
|
|