Methods Summary |
---|
public Call | createCall(javax.xml.namespace.QName portName)Creates a Call instance.
|
public Call | createCall(javax.xml.namespace.QName portName, javax.xml.namespace.QName operationName)Creates a Call instance.
|
public Call | createCall(javax.xml.namespace.QName portName, java.lang.String operationName)Creates a Call instance.
|
public Call | createCall()Creates a Call object not associated with
specific operation or target service endpoint. This
Call object needs to be configured using the
setter methods on the Call interface.
|
public Call[] | getCalls(javax.xml.namespace.QName portName)Gets an array of preconfigured Call objects for
invoking operations on the specified port. There is one
Call object per operation that can be invoked
on the specified port. Each Call object is
pre-configured and does not need to be configured using
the setter methods on Call interface.
Each invocation of the getCalls method
returns a new array of preconfigured Call
objects
This method requires the Service implementation
class to have access to the WSDL related metadata.
|
public javax.xml.rpc.handler.HandlerRegistry | getHandlerRegistry()Returns the configured HandlerRegistry instance
for this Service instance.
|
public java.rmi.Remote | getPort(javax.xml.namespace.QName portName, java.lang.Class serviceEndpointInterface)The getPort method returns either an instance of a generated
stub implementation class or a dynamic proxy. A service client
uses this dynamic proxy to invoke operations on the target
service endpoint. The serviceEndpointInterface
specifies the service endpoint interface that is supported by
the created dynamic proxy or stub instance.
|
public java.rmi.Remote | getPort(java.lang.Class serviceEndpointInterface)The getPort method returns either an instance of a generated
stub implementation class or a dynamic proxy. The parameter
serviceEndpointInterface specifies the service
endpoint interface that is supported by the returned stub or
proxy. In the implementation of this method, the JAX-RPC
runtime system takes the responsibility of selecting a protocol
binding (and a port) and configuring the stub accordingly.
The returned Stub instance should not be
reconfigured by the client.
|
public java.util.Iterator | getPorts()Returns an Iterator for the list of
QName s of service endpoints grouped by this
service.
|
public javax.xml.namespace.QName | getServiceName()Gets the name of this Service.
|
public javax.xml.rpc.encoding.TypeMappingRegistry | getTypeMappingRegistry()Gets the TypeMappingRegistry for this
Service object. The returned
TypeMappingRegistry instance is pre-configured
to support the standard type mapping between XML and Java
types types as required by the JAX-RPC specification.
|
public java.net.URL | getWSDLDocumentLocation()Gets location of the WSDL document for this Service.
|