Package | Description |
---|---|
javax.xml.rpc | |
javax.xml.rpc.server | |
org.apache.axis.client |
Modifier and Type | Method and Description |
---|---|
Call |
Service.createCall()
Creates a
Call object not associated with
specific operation or target service endpoint. |
Call |
Service.createCall(QName portName)
Creates a
Call instance. |
Call |
Service.createCall(QName portName,
QName operationName)
Creates a
Call instance. |
Call |
Service.createCall(QName portName,
java.lang.String operationName)
Creates a
Call instance. |
abstract Service |
ServiceFactory.createService(QName serviceName)
Create a
Service instance. |
abstract Service |
ServiceFactory.createService(java.net.URL wsdlDocumentLocation,
QName serviceName)
Create a
Service instance. |
Call[] |
Service.getCalls(QName portName)
Gets an array of preconfigured
Call objects for
invoking operations on the specified port. |
java.rmi.Remote |
Service.getPort(java.lang.Class serviceEndpointInterface)
The getPort method returns either an instance of a generated
stub implementation class or a dynamic proxy.
|
java.rmi.Remote |
Service.getPort(QName portName,
java.lang.Class serviceEndpointInterface)
The getPort method returns either an instance of a generated
stub implementation class or a dynamic proxy.
|
java.util.Iterator |
Service.getPorts()
Returns an
Iterator for the list of
QName s of service endpoints grouped by this
service. |
abstract Service |
ServiceFactory.loadService(java.lang.Class class1) |
abstract Service |
ServiceFactory.loadService(java.net.URL url,
java.lang.Class class1,
java.util.Properties properties) |
abstract Service |
ServiceFactory.loadService(java.net.URL url,
QName qname,
java.util.Properties properties) |
static ServiceFactory |
ServiceFactory.newInstance()
Gets an instance of the
ServiceFactory |
Modifier and Type | Method and Description |
---|---|
void |
ServiceLifecycle.init(java.lang.Object context)
Used for initialization of a service endpoint.
|
Modifier and Type | Method and Description |
---|---|
Call |
Stub._createCall()
Creates a call from the service.
|
Call |
Service.createCall()
Creates a new Call object with no prefilled data.
|
Call |
Service.createCall(QName portName)
Creates a new Call object - will prefill as much info from the WSDL
as it can.
|
Call |
Service.createCall(QName portName,
QName operationName)
Creates a new Call object - will prefill as much info from the WSDL
as it can.
|
Call |
Service.createCall(QName portName,
java.lang.String operationName)
Creates a new Call object - will prefill as much info from the WSDL
as it can.
|
Service |
ServiceFactory.createService(QName serviceName)
Create a Service instance.
|
Service |
ServiceFactory.createService(java.net.URL wsdlDocumentLocation,
QName serviceName)
Create a Service instance.
|
Call |
Service.getCall()
Deprecated.
please use Stub._getCall
|
Call[] |
Service.getCalls(QName portName)
Gets an array of preconfigured Call objects for invoking operations
on the specified port.
|
java.rmi.Remote |
Service.getPort(java.lang.Class proxyInterface)
Return a dynamic proxy for the given proxy interface.
|
java.rmi.Remote |
Service.getPort(QName portName,
java.lang.Class proxyInterface)
Return either an instance of a generated stub, if it can be
found, or a dynamic proxy for the given proxy interface.
|
java.rmi.Remote |
Service.getPort(java.lang.String endpoint,
java.lang.Class proxyInterface)
Return an object which acts as a dynamic proxy for the passed
interface class.
|
java.util.Iterator |
Service.getPorts()
Returns an
Iterator for the list of
QName s of service endpoints grouped by this
service |
Service |
ServiceFactory.loadService(java.lang.Class serviceInterface)
Create an instance of the generated service implementation class
for a given service interface, if available.
|
Service |
ServiceFactory.loadService(java.net.URL wsdlDocumentLocation,
java.lang.Class serviceInterface,
java.util.Properties properties)
Create an instance of the generated service implementation class
for a given service interface, if available.
|
Service |
ServiceFactory.loadService(java.net.URL wsdlDocumentLocation,
QName serviceName,
java.util.Properties properties)
Create an instance of the generated service implementation class
for a given service, if available.
|
void |
Service.setTypeMappingRegistry(TypeMappingRegistry registry)
Defines the current Type Mappig Registry.
|
Constructor and Description |
---|
AdminClient(boolean ignored)
this is a somwhat contrived variant constructor, one that throws an exception
if things go wrong.
|
Service(java.io.InputStream wsdlInputStream,
QName serviceName)
Constructs a new Service object for the service in the WSDL document
in the wsdlInputStream and serviceName parameters.
|
Service(Parser parser,
QName serviceName)
Constructs a new Service object for the service in the WSDL document
|
Service(java.lang.String wsdlLocation,
QName serviceName)
Constructs a new Service object for the service in the WSDL document
pointed to by the wsdlLocation and serviceName parameters.
|
Service(java.net.URL wsdlDoc,
QName serviceName)
Constructs a new Service object for the service in the WSDL document
pointed to by the wsdlDoc URL and serviceName parameters.
|
Copyright ? 2005 Apache Web Services Project. All Rights Reserved.