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,
String operationName)
Creates a
Call instance. |
abstract Service |
ServiceFactory.createService(QName serviceName)
Create a
Service instance. |
abstract Service |
ServiceFactory.createService(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. |
Remote |
Service.getPort(Class serviceEndpointInterface)
The getPort method returns either an instance of a generated
stub implementation class or a dynamic proxy.
|
Remote |
Service.getPort(QName portName,
Class serviceEndpointInterface)
The getPort method returns either an instance of a generated
stub implementation class or a dynamic proxy.
|
Iterator |
Service.getPorts()
Returns an
Iterator for the list of
QName s of service endpoints grouped by this
service. |
abstract Service |
ServiceFactory.loadService(Class class1) |
abstract Service |
ServiceFactory.loadService(URL url,
Class class1,
Properties properties) |
abstract Service |
ServiceFactory.loadService(URL url,
QName qname,
Properties properties) |
static ServiceFactory |
ServiceFactory.newInstance()
Gets an instance of the
ServiceFactory
Only one copy of a factory exists and is returned to the
application each time this method is called. |
Modifier and Type | Method and Description |
---|---|
void |
ServiceLifecycle.init(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,
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(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.
|
Remote |
Service.getPort(Class proxyInterface)
Return a dynamic proxy for the given proxy interface.
|
Remote |
Service.getPort(QName portName,
Class proxyInterface)
Return either an instance of a generated stub, if it can be
found, or a dynamic proxy for the given proxy interface.
|
Remote |
Service.getPort(String endpoint,
Class proxyInterface)
Return an object which acts as a dynamic proxy for the passed
interface class.
|
Iterator |
Service.getPorts()
Returns an
Iterator for the list of
QName s of service endpoints grouped by this
service |
Service |
ServiceFactory.loadService(Class serviceInterface)
Create an instance of the generated service implementation class
for a given service interface, if available.
|
Service |
ServiceFactory.loadService(URL wsdlDocumentLocation,
Class serviceInterface,
Properties properties)
Create an instance of the generated service implementation class
for a given service interface, if available.
|
Service |
ServiceFactory.loadService(URL wsdlDocumentLocation,
QName serviceName,
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(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(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(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 © The Apache Software Foundation. All Rights Reserved.