Uses of Class
org.apache.axis2.description.AxisService

Packages that use AxisService
org.apache.axis2   
org.apache.axis2.client   
org.apache.axis2.context   
org.apache.axis2.dataretrieval   
org.apache.axis2.dataretrieval.client   
org.apache.axis2.deployment   
org.apache.axis2.deployment.repository.util   
org.apache.axis2.deployment.util   
org.apache.axis2.description   
org.apache.axis2.dispatchers   
org.apache.axis2.engine   
org.apache.axis2.transport.jms   
org.apache.axis2.util   
 

Uses of AxisService in org.apache.axis2
 

Methods in org.apache.axis2 with parameters of type AxisService
 java.lang.Object ServiceObjectSupplier.getServiceObject(AxisService axisService)
           
 

Uses of AxisService in org.apache.axis2.client
 

Fields in org.apache.axis2.client declared as AxisService
protected  AxisService Stub._service
           
 

Methods in org.apache.axis2.client that return AxisService
 AxisService ServiceClient.getAxisService()
          Return the AxisService this is a client for.
 

Methods in org.apache.axis2.client with parameters of type AxisService
 void ServiceClient.setAxisService(AxisService axisService)
          Configure the ServiceClient to interact with the Web service described by the specified AxisService object.
 void WSDLBasedPolicyProcessor.configureServicePolices(AxisService axisService)
           
 

Constructors in org.apache.axis2.client with parameters of type AxisService
ServiceClient(ConfigurationContext configContext, AxisService axisService)
          Create a service client configured to work with a specific AxisService.
 

Uses of AxisService in org.apache.axis2.context
 

Methods in org.apache.axis2.context that return AxisService
 AxisService MessageContext.getAxisService()
           
 AxisService ServiceContext.getAxisService()
           
 

Methods in org.apache.axis2.context with parameters of type AxisService
 void MessageContext.setAxisService(AxisService axisService)
           
 ServiceContext SessionContext.getServiceContext(AxisService axisService)
           
static ServiceContext ContextFactory.createServiceContext(ServiceGroupContext serviceGroupContext, AxisService service)
           
 ServiceContext ServiceGroupContext.getServiceContext(AxisService service)
          Gets a service context.
 ServiceContext ServiceGroupContext.findServiceContext(AxisService axisSrv)
          Finds the service context object that corresponds to the specified AxisService from the list of service contexts for this service group context.
 

Constructors in org.apache.axis2.context with parameters of type AxisService
ServiceContext(AxisService serviceConfig, ServiceGroupContext serviceGroupContext)
           
 

Uses of AxisService in org.apache.axis2.dataretrieval
 

Constructors in org.apache.axis2.dataretrieval with parameters of type AxisService
AxisDataLocatorImpl(AxisService in_axisService)
          Constructor
 

Uses of AxisService in org.apache.axis2.dataretrieval.client
 

Constructors in org.apache.axis2.dataretrieval.client with parameters of type AxisService
MexClient(ConfigurationContext configContext, AxisService axisService)
           
 

Uses of AxisService in org.apache.axis2.deployment
 

Methods in org.apache.axis2.deployment that return AxisService
static AxisService DeploymentEngine.buildService(java.io.InputStream serviceInputStream, java.lang.ClassLoader classLoader, ConfigurationContext configCtx)
          Fills an axisservice object using services.xml.
 AxisService ServiceBuilder.populateService(org.apache.axiom.om.OMElement service_element)
          Populates service from corresponding OM.
 

Methods in org.apache.axis2.deployment with parameters of type AxisService
protected  MessageReceiver DescriptionBuilder.loadDefaultMessageReceiver(java.lang.String mepURL, AxisService service)
          Loads default message receivers.
 void POJODeployer.setMessageReceivers(AxisService service)
           
protected  MessageReceiver DeploymentEngine.loadDefaultMessageReceiver(java.lang.String mepURL, AxisService service)
           
protected  void ServiceBuilder.processServiceModuleConfig(java.util.Iterator moduleConfigs, ParameterInclude parent, AxisService service)
           
 

Constructors in org.apache.axis2.deployment with parameters of type AxisService
ServiceBuilder(ConfigurationContext configCtx, AxisService service)
           
ServiceBuilder(java.io.InputStream serviceInputStream, ConfigurationContext configCtx, AxisService service)
           
 

Uses of AxisService in org.apache.axis2.deployment.repository.util
 

Methods in org.apache.axis2.deployment.repository.util that return AxisService
 AxisService ArchiveReader.getAxisServiceFromWsdl(java.io.InputStream in, java.lang.ClassLoader loader, java.lang.String wsdlUrl)
           
 

Uses of AxisService in org.apache.axis2.deployment.util
 

Methods in org.apache.axis2.deployment.util with parameters of type AxisService
static void Utils.fillAxisService(AxisService axisService, AxisConfiguration axisConfig, java.util.ArrayList excludeOperations, java.util.ArrayList nonRpcMethods)
          This guy will create a AxisService using java reflection
 

Uses of AxisService in org.apache.axis2.description
 

Fields in org.apache.axis2.description declared as AxisService
protected  AxisService WSDLToAxisServiceBuilder.axisService
           
 

Methods in org.apache.axis2.description that return AxisService
static AxisService AxisService.createClientSideAxisService(java.net.URL wsdlURL, javax.xml.namespace.QName wsdlServiceName, java.lang.String portName, Options options)
          To create a AxisService for a given WSDL and the created client is most suitable for client side invocation not for server side invocation.
static AxisService AxisService.createClientSideAxisService(javax.wsdl.Definition wsdlDefinition, javax.xml.namespace.QName wsdlServiceName, java.lang.String portName, Options options)
           
static AxisService AxisService.createService(java.lang.String implClass, AxisConfiguration axisConfig, java.lang.Class messageReceiverClass)
          To create an AxisService using given service impl class name first generate schema corresponding to the given java class , next for each methods AxisOperation will be created.
static AxisService AxisService.createService(java.lang.String implClass, AxisConfiguration axisConfiguration, java.util.Map messageReceiverClassMap, java.lang.String targetNamespace, java.lang.String schemaNamespace, java.lang.ClassLoader loader)
          messageReceiverClassMap will hold the MessageReceivers for given meps.
static AxisService AxisService.createService(java.lang.String implClass, AxisConfiguration axisConfiguration, java.util.Map messageReceiverClassMap, java.lang.String targetNamespace, java.lang.String schemaNamespace)
           
static AxisService AxisService.createService(java.lang.String implClass, AxisConfiguration axisConfig, java.lang.Class messageReceiverClass, java.lang.String targetNameSpace, java.lang.String schemaNameSpace)
          To create a service for a given Java class with user defined schema and target namespaces.
static AxisService AxisService.createService(java.lang.String implClass, AxisConfiguration axisConfig)
           
 AxisService WSDL20ToAxisServiceBuilder.populateService()
           
abstract  AxisService WSDLToAxisServiceBuilder.populateService()
           
 AxisService AxisServiceGroup.getService(java.lang.String name)
           
 AxisService WSDL11ToAxisServiceBuilder.populateService()
          populates a given service This is the only publicly accessible method in this class
 

Methods in org.apache.axis2.description with parameters of type AxisService
 java.util.ArrayList AxisOperation.addModuleOperations(AxisModule module, AxisConfiguration axisConfig, AxisService service)
          Adds an operation to a service if a module is required to do so.
protected  void WSDLToAxisServiceBuilder.setPolicyRegistryFromService(AxisService axisService)
           
 void AxisServiceGroup.addService(AxisService service)
           
 void AxisServiceGroup.addToGroup(AxisService service)
           
 

Constructors in org.apache.axis2.description with parameters of type AxisService
AxisService2WSDL2(AxisService service, java.lang.String[] serviceURL)
           
WSDL20ToAxisServiceBuilder(java.lang.String wsdlUri, AxisService service)
           
AxisService2OM(AxisService service, java.lang.String[] serviceEndpointURLs, java.lang.String style, java.lang.String use, java.lang.String servicePath)
           
WSDLToAxisServiceBuilder(java.io.InputStream in, AxisService axisService)
           
WSDL11ToAxisServiceBuilder(java.io.InputStream in, AxisService service)
           
 

Uses of AxisService in org.apache.axis2.dispatchers
 

Methods in org.apache.axis2.dispatchers that return AxisService
abstract  AxisService AbstractServiceDispatcher.findService(MessageContext messageContext)
          Called by Axis Engine to find the service.
 AxisService RelatesToBasedServiceDispatcher.findService(MessageContext messageContext)
           
 AxisService RequestURIBasedServiceDispatcher.findService(MessageContext messageContext)
           
 AxisService SOAPMessageBodyBasedServiceDispatcher.findService(MessageContext messageContext)
           
 

Methods in org.apache.axis2.dispatchers with parameters of type AxisService
 AxisOperation RelatesToBasedOperationDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
abstract  AxisOperation AbstractOperationDispatcher.findOperation(AxisService service, MessageContext messageContext)
          Called by Axis Engine to find the operation.
 AxisOperation RequestURIBasedOperationDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation ActionBasedOperationDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation SOAPMessageBodyBasedOperationDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 

Uses of AxisService in org.apache.axis2.engine
 

Methods in org.apache.axis2.engine that return AxisService
 AxisService RequestURIBasedDispatcher.findService(MessageContext messageContext)
           
 AxisService HTTPLocationBasedDispatcher.findService(MessageContext messageContext)
           
 AxisService SOAPActionBasedDispatcher.findService(MessageContext messageContext)
           
 AxisService SOAPMessageBodyBasedDispatcher.findService(MessageContext messageContext)
           
 AxisService RequestURIOperationDispatcher.findService(MessageContext messageContext)
           
 AxisService AddressingBasedDispatcher.findService(MessageContext messageContext)
           
abstract  AxisService AbstractDispatcher.findService(MessageContext messageContext)
          Called by Axis Engine to find the service.
 AxisService AxisConfiguration.getService(java.lang.String name)
          Method getService.
 AxisService AxisConfiguration.getServiceForActivation(java.lang.String serviceName)
          Service can start and stop, once stopped it cannot be accessed, so we need a way to get the service even if service is not active.
 

Methods in org.apache.axis2.engine with parameters of type AxisService
 AxisOperation RequestURIBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation HTTPLocationBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation SOAPActionBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation SOAPMessageBodyBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation RequestURIOperationDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation AddressingBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 void AxisObserver.serviceUpdate(AxisEvent event, AxisService service)
           
abstract  AxisOperation AbstractDispatcher.findOperation(AxisService service, MessageContext messageContext)
          Called by Axis Engine to find the operation.
 void ServiceLifeCycle.startUp(ConfigurationContext configctx, AxisService service)
          this will be called during the deployement time of the service.
 void ServiceLifeCycle.shutDown(ConfigurationContext configctx, AxisService service)
          this will be called during the system shut down time.
 void AxisConfiguration.addService(AxisService service)
          Method addService.
 void AxisConfiguration.addToAllServicesMap(java.lang.String serviceName, AxisService axisService)
           
 void AxisConfiguration.notifyObservers(int event_type, AxisService service)
           
 

Uses of AxisService in org.apache.axis2.transport.jms
 

Methods in org.apache.axis2.transport.jms with parameters of type AxisService
static boolean JMSUtils.isJMSService(AxisService service)
          Should this service be enabled on JMS transport?
static java.lang.String JMSUtils.getDestination(AxisService service)
          Get the JMS destination used by this service
 

Uses of AxisService in org.apache.axis2.util
 

Methods in org.apache.axis2.util that return AxisService
static AxisService Utils.createSimpleService(javax.xml.namespace.QName serviceName, java.lang.String className, javax.xml.namespace.QName opName)
           
static AxisService Utils.createSimpleServiceforClient(javax.xml.namespace.QName serviceName, java.lang.String className, javax.xml.namespace.QName opName)
           
static AxisService Utils.createSimpleService(javax.xml.namespace.QName serviceName, MessageReceiver messageReceiver, java.lang.String className, javax.xml.namespace.QName opName)
           
static AxisService Utils.createSimpleServiceforClient(javax.xml.namespace.QName serviceName, MessageReceiver messageReceiver, java.lang.String className, javax.xml.namespace.QName opName)
           
static AxisService ObjectStateUtils.findService(AxisConfiguration axisConfig, java.lang.String serviceClassName, java.lang.String serviceName)
          Find the AxisService object that matches the criteria
 

Methods in org.apache.axis2.util with parameters of type AxisService
static org.apache.axiom.om.OMElement WSDLSerializationUtil.generateSOAP11Binding(org.apache.axiom.om.OMFactory fac, AxisService axisService, org.apache.axiom.om.OMNamespace wsdl, org.apache.axiom.om.OMNamespace wsoap, org.apache.axiom.om.OMNamespace tns)
          Generates a default SOAP 11 Binding for a given AxisService
static org.apache.axiom.om.OMElement WSDLSerializationUtil.generateSOAP12Binding(org.apache.axiom.om.OMFactory fac, AxisService axisService, org.apache.axiom.om.OMNamespace wsdl, org.apache.axiom.om.OMNamespace wsoap, org.apache.axiom.om.OMNamespace tns)
          Generates a default SOAP 12 Binding for a given AxisService
static org.apache.axiom.om.OMElement WSDLSerializationUtil.generateHTTPBinding(org.apache.axiom.om.OMFactory fac, AxisService axisService, org.apache.axiom.om.OMNamespace wsdl, org.apache.axiom.om.OMNamespace whttp, org.apache.axiom.om.OMNamespace tns)
          Generates a default HTTP Binding for a given AxisService
static org.apache.axiom.om.OMElement WSDLSerializationUtil.generateServiceElement(org.apache.axiom.om.OMFactory omFactory, org.apache.axiom.om.OMNamespace wsdl, org.apache.axiom.om.OMNamespace tns, AxisService axisService)
          Generates a default service element
static ServiceContext Utils.fillContextInformation(AxisService axisService, ConfigurationContext configurationContext)
           
static AxisOperation ObjectStateUtils.findOperation(AxisService service, java.lang.String opClassName, javax.xml.namespace.QName opQName)
          Find the AxisOperation object that matches the criteria
 



Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.