Uses of Class
javax.xml.rpc.ServiceException

Packages that use ServiceException
javax.xml.rpc This package contains the core JAX-RPC APIs for the client programming model. 
javax.xml.rpc.server This package defines APIs for the servlet based JAX-RPC endpoint model. 
 

Uses of ServiceException in javax.xml.rpc
 

Methods in javax.xml.rpc that throw ServiceException
static ServiceFactory ServiceFactory.newInstance()
          Gets an instance of the ServiceFactory
abstract  Service ServiceFactory.createService(java.net.URL wsdlDocumentLocation, QName serviceName)
          Create a Service instance.
abstract  Service ServiceFactory.createService(QName serviceName)
          Create a Service instance.
 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.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.
 Call[] Service.getCalls(QName portName)
          Gets an array of preconfigured Call objects for invoking operations on the specified port.
 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.
 Call Service.createCall()
          Creates a Call object not associated with specific operation or target service endpoint.
 java.util.Iterator Service.getPorts()
          Returns an Iterator for the list of QNames of service endpoints grouped by this service
 

Uses of ServiceException in javax.xml.rpc.server
 

Methods in javax.xml.rpc.server that throw ServiceException
 void ServiceLifecycle.init(java.lang.Object context)
          Used for initialization of a service endpoint.