Uses of Class
javax.xml.rpc.ServiceException
-
Packages that use ServiceException Package Description javax.xml.rpc javax.xml.rpc.server org.apache.axis.client -
-
Uses of ServiceException in javax.xml.rpc
Methods in javax.xml.rpc that throw ServiceException Modifier and Type Method Description Call
Service. createCall()
Creates aCall
object not associated with specific operation or target service endpoint.Call
Service. createCall(QName portName)
Creates aCall
instance.Call
Service. createCall(QName portName, java.lang.String operationName)
Creates aCall
instance.Call
Service. createCall(QName portName, QName operationName)
Creates aCall
instance.abstract Service
ServiceFactory. createService(java.net.URL wsdlDocumentLocation, QName serviceName)
Create aService
instance.abstract Service
ServiceFactory. createService(QName serviceName)
Create aService
instance.Call[]
Service. getCalls(QName portName)
Gets an array of preconfiguredCall
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 anIterator
for the list ofQName
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 theServiceFactory
-
Uses of ServiceException in javax.xml.rpc.server
Methods in javax.xml.rpc.server that throw ServiceException Modifier and Type Method Description void
ServiceLifecycle. init(java.lang.Object context)
Used for initialization of a service endpoint. -
Uses of ServiceException in org.apache.axis.client
Methods in org.apache.axis.client that throw ServiceException Modifier and Type Method 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, java.lang.String operationName)
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.Service
ServiceFactory. createService(java.net.URL wsdlDocumentLocation, QName serviceName)
Create a Service instance.Service
ServiceFactory. createService(QName serviceName)
Create a Service instance.Call
Service. getCall()
Deprecated.please use Stub._getCallCall[]
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(java.lang.String endpoint, java.lang.Class proxyInterface)
Return an object which acts as a dynamic proxy for the passed interface class.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.util.Iterator
Service. getPorts()
Returns anIterator
for the list ofQName
s of service endpoints grouped by this serviceService
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.Constructors in org.apache.axis.client that throw ServiceException Constructor 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(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.Service(Parser parser, QName serviceName)
Constructs a new Service object for the service in the WSDL document
-