Package | Description |
---|---|
javax.xml.rpc |
This package contains the core JAX-RPC APIs for the client
programming model.
|
Modifier and Type | Method and Description |
---|---|
abstract Service |
ServiceFactory.createService(javax.xml.namespace.QName serviceName)
Create a
Service instance. |
abstract Service |
ServiceFactory.createService(java.net.URL wsdlDocumentLocation,
javax.xml.namespace.QName serviceName)
Create a
Service instance. |
abstract Service |
ServiceFactory.loadService(java.lang.Class serviceInterface)
Create an instance of the generated service implementation class
for a given service interface, if available.
|
abstract 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.
|
abstract Service |
ServiceFactory.loadService(java.net.URL wsdlDocumentLocation,
javax.xml.namespace.QName serviceName,
java.util.Properties properties)
Create an instance of the generated service implementation
class for a given service, if available.
|