Uses of Class
org.apache.axis2.AxisFault

Packages that use AxisFault
org.apache.axis2   
org.apache.axis2.addressing   
org.apache.axis2.client   
org.apache.axis2.context   
org.apache.axis2.databinding.utils   
org.apache.axis2.deployment   
org.apache.axis2.deployment.repository.util   
org.apache.axis2.deployment.util   
org.apache.axis2.description   
org.apache.axis2.engine   
org.apache.axis2.extensions.spring.receivers   
org.apache.axis2.handlers.addressing   
org.apache.axis2.handlers.soapmonitor   
org.apache.axis2.modules   
org.apache.axis2.phaseresolver   
org.apache.axis2.receivers   
org.apache.axis2.rpc.client   
org.apache.axis2.rpc.receivers   
org.apache.axis2.transport   
org.apache.axis2.transport.http   
org.apache.axis2.transport.http.server   
org.apache.axis2.transport.http.util   
org.apache.axis2.transport.jms   
org.apache.axis2.transport.local   
org.apache.axis2.transport.mail   
org.apache.axis2.transport.mail.server   
org.apache.axis2.transport.tcp   
org.apache.axis2.util   
org.apache.axis2.util.threadpool   
 

Uses of AxisFault in org.apache.axis2
 

Methods in org.apache.axis2 that return AxisFault
static AxisFault AxisFault.makeFault(Exception e)
          Make an AxisFault based on a passed Exception.
 

Methods in org.apache.axis2 that throw AxisFault
 Object ServiceObjectSupplier.getServiceObject(AxisService axisService)
           
 

Uses of AxisFault in org.apache.axis2.addressing
 

Methods in org.apache.axis2.addressing that throw AxisFault
static void EndpointReferenceHelper.fromOM(EndpointReference epr, org.apache.axiom.om.OMElement eprOMElement, String addressingNamespace)
          Populates an endpoint reference based on the OMElement and WS-Addressing namespace that is passed in.
static EndpointReference EndpointReferenceHelper.fromOM(org.apache.axiom.om.OMElement eprOMElement)
          Populates an endpoint reference based on the OMElement that is passed in.
static org.apache.axiom.om.OMElement EndpointReferenceHelper.toOM(org.apache.axiom.om.OMFactory factory, EndpointReference epr, QName qname, String addressingNamespace)
          Creates an OMElement based on the properties of the endpoint reference.
 org.apache.axiom.om.OMElement EndpointReference.toOM(String nsurl, String localName, String prefix)
          Deprecated. use org.apache.axis2.addressing.EndpointReferenceHelper#toOM(EndpointReference, QName, String) instead.
static void AddressingFaultsHelper.triggerActionMismatchFault(MessageContext messageContext)
           
static void AddressingFaultsHelper.triggerActionNotSupportedFault(MessageContext messageContext, String problemAction)
           
static void AddressingFaultsHelper.triggerInvalidCardinalityFault(MessageContext messageContext, String incorrectHeaderName)
           
static void AddressingFaultsHelper.triggerMessageAddressingRequiredFault(MessageContext messageContext, String missingHeaderName)
           
static void AddressingFaultsHelper.triggerMissingAddressInEPRFault(MessageContext messageContext, String incorrectHeaderName)
           
static void AddressingFaultsHelper.triggerOnlyAnonymousAddressSupportedFault(MessageContext messageContext, String incorrectHeaderName)
           
static void AddressingFaultsHelper.triggerOnlyNonAnonymousAddressSupportedFault(MessageContext messageContext, String incorrectHeaderName)
           
 

Uses of AxisFault in org.apache.axis2.client
 

Methods in org.apache.axis2.client that throw AxisFault
abstract  void OperationClient.addMessageContext(MessageContext messageContext)
          Add a message context to the client for processing.
 void ServiceClient.addStringHeader(QName headerName, String headerText)
          Add a simple header consisting of some text (and a header name; duh) to be sent with interactions.
 void ServiceClient.cleanup()
          Clean up configuration created with this client.
 void Stub.cleanup()
          Cleanup associated resources.
 void OperationClient.complete(MessageContext msgCtxt)
          To close the transport if necessary , can call this method.
 void WSDLBasedPolicyProcessor.configureOperationPolices(AxisOperation op)
           
 void WSDLBasedPolicyProcessor.configureServicePolices(AxisService axisService)
           
 OperationClient ServiceClient.createClient(QName operationQName)
          Create an operation client with the appropriate message exchange pattern (MEP).
 void ServiceClient.engageModule(QName moduleName)
          Engage a module for this service client.
abstract  void OperationClient.execute(boolean block)
          Execute the MEP.
 void ServiceClient.fireAndForget(org.apache.axiom.om.OMElement elem)
          Directly invoke an anonymous operation with an In-Only MEP.
 void ServiceClient.fireAndForget(QName operation, org.apache.axiom.om.OMElement elem)
          Directly invoke a named operation with an In-Only MEP.
abstract  MessageContext OperationClient.getMessageContext(String messageLabel)
          Return a message from the client - will return null if the requested message is not available.
 EndpointReference ServiceClient.getMyEPR(String transport)
          Get the endpoint reference for this client using a particular transport.
protected  void OperationClient.prepareMessageContext(ConfigurationContext cc, MessageContext mc)
           
 void OperationClient.reset()
          Reset the operation client to a clean status after the MEP has completed.
 org.apache.axiom.om.OMElement ServiceClient.sendReceive(org.apache.axiom.om.OMElement elem)
          Directly invoke an anonymous operation with an In-Out MEP.
 org.apache.axiom.om.OMElement ServiceClient.sendReceive(QName operationQName, org.apache.axiom.om.OMElement xmlPayload)
          Directly invoke a named operationQName with an In-Out MEP.
 void ServiceClient.sendReceiveNonBlocking(org.apache.axiom.om.OMElement elem, Callback callback)
          Directly invoke an anonymous operation with an In-Out MEP without waiting for a response.
 void ServiceClient.sendReceiveNonBlocking(QName operation, org.apache.axiom.om.OMElement elem, Callback callback)
          Directly invoke a named operation with an In-Out MEP without waiting for a response.
 void ServiceClient.sendRobust(org.apache.axiom.om.OMElement elem)
          Directly invoke an anonymous operation with a Robust In-Only MEP.
 void ServiceClient.sendRobust(QName operation, org.apache.axiom.om.OMElement elem)
          Directly invoke a named operation with a Robust In-Only MEP.
 void Options.setSenderTransport(String senderTransport, AxisConfiguration axisConfiguration)
          Set transport used for outgoing message.
 void Options.setTransportInfo(String senderTransport, String listenerTransport, boolean useSeparateListener)
          Deprecated. Use setTransportInProtocol(String) and useSeparateListener(boolean) instead. You do not need to setSenderTransportProtocol(String) as sender transport can be inferred from the to EPR. But still you can setTransportOut(TransportOutDescription).
 

Constructors in org.apache.axis2.client that throw AxisFault
ServiceClient()
          Create a service client by assuming an anonymous service and any other necessary information.
ServiceClient(ConfigurationContext configContext, AxisService axisService)
          Create a service client configured to work with a specific AxisService.
ServiceClient(ConfigurationContext configContext, javax.wsdl.Definition wsdl4jDefinition, QName wsdlServiceName, String portName)
          This is WSDL4J based constructor to configure the Service Client/ We are going to make this policy aware
ServiceClient(ConfigurationContext configContext, URL wsdlURL, QName wsdlServiceName, String portName)
          Create a service client for WSDL service identified by the QName of the wsdl:service element in a WSDL document.
 

Uses of AxisFault in org.apache.axis2.context
 

Methods in org.apache.axis2.context that throw AxisFault
 void OperationContext.addMessageContext(MessageContext msgContext)
          When a new message is added to the MEPContext the logic should be included remove the MEPContext from the table in the EngineContext.
static void ConfigurationContextFactory.addModuleService(ConfigurationContext configCtx)
           
static ConfigurationContext ConfigurationContextFactory.createConfigurationContext(AxisConfigurator axisConfigurator)
          Creates a AxisConfiguration depending on the user requirement.
static ConfigurationContext ConfigurationContextFactory.createConfigurationContextFromFileSystem(String path, String axis2xml)
          To get a ConfigurationContext for given data , and underline implementation is Axis2 default impl which is file system based deployment model to create an AxisConfiguration.
static ConfigurationContext ConfigurationContextFactory.createConfigurationContextFromURIs(URL axis2xml, URL repositoy)
           
static OperationContext OperationContextFactory.createOperationContext(int mepURI, AxisOperation axisOp)
          Creates the operation context.
static OperationContext OperationContextFactory.createOperationContext(int mepURI, AxisOperation axisOp, ServiceContext serviceContext)
           
 void ConfigurationContext.fillServiceContextAndServiceGroupContext(MessageContext messageContext)
          Searches for a ServiceGroupContext in the map with given id as the key.
 MessageContext OperationContext.getMessageContext(String messageLabel)
           
 EndpointReference ServiceContext.getMyEPR(String transport)
          To get the ERP for a given service , if the transport is present and not running then it will add as a listener to ListenerManager , there it will init that and start the listener , and finally ask the EPR from transport for a given service
 ServiceContext ServiceGroupContext.getServiceContext(AxisService service)
          Gets a service context.
 void SessionContext.init(AxisConfiguration axisConfiguration)
           
 void MessageContext.setEnvelope(org.apache.axiom.soap.SOAPEnvelope envelope)
           
 void ConfigurationContext.setThreadPool(ThreadFactory pool)
          Sets the thread factory.
 

Uses of AxisFault in org.apache.axis2.databinding.utils
 

Methods in org.apache.axis2.databinding.utils that throw AxisFault
static Object BeanUtil.deserialize(Class beanClass, org.apache.axiom.om.OMElement beanElement, MultirefHelper helper, ObjectSupplier objectSupplier)
           
static Object BeanUtil.deserialize(Class beanClass, org.apache.axiom.om.OMElement beanElement, ObjectSupplier objectSupplier, String arrayLocalName)
           
static Object[] BeanUtil.deserialize(org.apache.axiom.om.OMElement response, Object[] javaTypes, ObjectSupplier objectSupplier)
          To get JavaObjects from XML elemnt , the element most of the time contains only one element in that case that element will be converted to the JavaType specified by the javaTypes array The algo is as follows, get the childerns of the response element , and if it conatian more than one element then check the retuen type of that element and conver that to corresponding JavaType
 org.apache.axiom.om.OMElement MultirefHelper.processElementforRefs(org.apache.axiom.om.OMElement elemnts)
           
static Object BeanUtil.processObject(org.apache.axiom.om.OMElement omElement, Class classType, MultirefHelper helper, boolean isArrayType, ObjectSupplier objectSupplier)
           
 org.apache.axiom.om.OMElement MultirefHelper.processOMElementRef(String id)
           
 Object MultirefHelper.processRef(Class javatype, String id, ObjectSupplier objectSupplier)
           
 

Uses of AxisFault in org.apache.axis2.deployment
 

Subclasses of AxisFault in org.apache.axis2.deployment
 class DeploymentException
           
 

Methods in org.apache.axis2.deployment that throw AxisFault
static AxisServiceGroup DeploymentEngine.buildServiceGroup(InputStream servicesxml, ClassLoader classLoader, String serviceGroupName, ConfigurationContext configCtx, ArchiveReader archiveReader, HashMap wsdlServices)
          To build a AxisServiceGroup for a given services.xml You have to add the created group into AxisConfig
 void FileSystemConfigurator.engageGlobalModules()
           
 void URLBasedAxisConfigurator.engageGlobalModules()
           
 void WarBasedAxisConfigurator.engageGlobalModules()
           
 void DeploymentEngine.engageModules()
          Checks if the modules, referred by server.xml, exist or that they are deployed.
 AxisConfiguration FileSystemConfigurator.getAxisConfiguration()
          First create a Deployment engine, use that to create an AxisConfiguration
 AxisConfiguration URLBasedAxisConfigurator.getAxisConfiguration()
           
 AxisConfiguration WarBasedAxisConfigurator.getAxisConfiguration()
          Gets the axis configuration object by loading the repository.
 AxisModule DeploymentEngine.getModule(QName moduleName)
           
 

Constructors in org.apache.axis2.deployment that throw AxisFault
URLBasedAxisConfigurator(URL axis2xml, URL repositoy)
           
 

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

Methods in org.apache.axis2.deployment.repository.util that throw AxisFault
 ArrayList ArchiveReader.buildServiceGroup(InputStream zin, ArchiveFileData currentFile, AxisServiceGroup axisServiceGroup, HashMap wsdlServices, ConfigurationContext configCtx)
           
 ArrayList ArchiveReader.processServiceGroup(String filename, ArchiveFileData currentFile, AxisServiceGroup axisServiceGroup, boolean extractService, HashMap wsdls, ConfigurationContext configCtx)
          Extracts Service XML files and builds the service groups.
 void ArchiveFileData.setClassLoader(boolean extractArchive, ClassLoader parent)
           
 

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

Methods in org.apache.axis2.deployment.util that throw AxisFault
static void Utils.addFlowHandlers(Flow flow, ClassLoader clsLoader)
           
static void Utils.deployModuleServices(AxisModule module, ConfigurationContext configCtx)
          This method is to get the list of services there in a module if module want to add services then the way of doing that is 1.
static AxisOperation Utils.getAxisOperationforJmethod(org.codehaus.jam.JMethod jmethod, org.apache.ws.java2wsdl.utils.TypeTable table)
           
 void PhasesInfo.setOperationPhases(AxisOperation axisOperation)
           
 

Uses of AxisFault in org.apache.axis2.description
 

Methods in org.apache.axis2.description that throw AxisFault
abstract  void AxisOperation.addFaultMessageContext(MessageContext msgContext, OperationContext opContext)
           
 void InOnlyAxisOperation.addFaultMessageContext(MessageContext msgContext, OperationContext opContext)
           
 void OutOnlyAxisOperation.addFaultMessageContext(MessageContext msgContext, OperationContext opContext)
           
 void TwoChannelAxisOperation.addFaultMessageContext(MessageContext msgContext, OperationContext opContext)
           
abstract  void AxisOperation.addMessageContext(MessageContext msgContext, OperationContext opContext)
          Adds a message context into an operation context.
 void InOnlyAxisOperation.addMessageContext(MessageContext msgContext, OperationContext opContext)
           
 void InOutAxisOperation.addMessageContext(MessageContext msgContext, OperationContext opContext)
           
 void OutInAxisOperation.addMessageContext(MessageContext msgContext, OperationContext opContext)
           
 void OutOnlyAxisOperation.addMessageContext(MessageContext msgContext, OperationContext opContext)
           
 void AxisService.addModuleOperations(AxisModule module, AxisConfiguration axisConfig)
          Adds an operation to a service if a module is required to do so.
 ArrayList AxisOperation.addModuleOperations(AxisModule module, AxisConfiguration axisConfig, AxisService service)
          Adds an operation to a service if a module is required to do so.
 void AxisDescription.addParameter(Parameter param)
           
 void AxisModule.addParameter(Parameter param)
           
 void HandlerDescription.addParameter(Parameter param)
           
 void ModuleConfiguration.addParameter(Parameter param)
           
 void ParameterInclude.addParameter(Parameter param)
          Method addParameter.
 void TransportInDescription.addParameter(Parameter param)
          Method addParameter.
 void TransportOutDescription.addParameter(Parameter param)
          Method addParameter.
 void AxisServiceGroup.addService(AxisService service)
           
 void AxisDescription.applyPolicy()
          Applies the policies on the Description Hierarchy recursively.
 void AxisDescription.applyPolicy(org.apache.neethi.Policy policy)
          This method sets the policy as the default of this AxisDescription instance.
static AxisService AxisService.createClientSideAxisService(javax.wsdl.Definition wsdlDefinition, QName wsdlServiceName, String portName, Options options)
           
static AxisService AxisService.createClientSideAxisService(URL wsdlURL, QName wsdlServiceName, 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.createService(String implClass, AxisConfiguration axisConfig)
           
static AxisService AxisService.createService(String implClass, AxisConfiguration axisConfig, 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(String implClass, AxisConfiguration axisConfig, Class messageReceiverClass, String targetNameSpace, String schemaNameSpace)
          To create a service for a given Java class with user defined schema and target namespaces.
static AxisService AxisService.createService(String implClass, AxisConfiguration axisConfiguration, Map messageReceiverClassMap, String targetNamespace, String schemaNamespace)
          messageReceiverClassMap will hold the MessageReceivers for given meps.
 void AxisDescription.deserializeParameters(org.apache.axiom.om.OMElement parameterElement)
           
 void AxisModule.deserializeParameters(org.apache.axiom.om.OMElement parameterElement)
           
 void HandlerDescription.deserializeParameters(org.apache.axiom.om.OMElement parameterElement)
           
 void ModuleConfiguration.deserializeParameters(org.apache.axiom.om.OMElement parameterElement)
           
 void ParameterInclude.deserializeParameters(org.apache.axiom.om.OMElement parameterElement)
           
 void ParameterIncludeImpl.deserializeParameters(org.apache.axiom.om.OMElement parameters)
          Since at runtime it parameters may be modified to get the original state this method can be used
 void TransportInDescription.deserializeParameters(org.apache.axiom.om.OMElement parameterElement)
           
 void TransportOutDescription.deserializeParameters(org.apache.axiom.om.OMElement parameterElement)
           
 void AxisServiceGroup.disengageModule(AxisModule module)
           
abstract  void AxisDescription.engageModule(AxisModule axisModule, AxisConfiguration axisConfig)
          Engaging a module to different level
 void AxisMessage.engageModule(AxisModule axisModule, AxisConfiguration axisConfig)
           
 void AxisOperation.engageModule(AxisModule moduleref, AxisConfiguration axisConfig)
          Engages a module.
 void AxisService.engageModule(AxisModule axisModule, AxisConfiguration axisConfig)
          Engages a module.
 void AxisServiceGroup.engageModule(AxisModule module, AxisConfiguration axisConfig)
           
 OperationContext AxisOperation.findForExistingOperationContext(MessageContext msgContext)
          Returns as existing OperationContext related to this message if one exists.
 OperationContext AxisOperation.findOperationContext(MessageContext msgContext, ServiceContext serviceContext)
          Finds a MEPContext for an incoming message.
static AxisOperation AxisOperationFactory.getAxisOperation(int mepURI)
           
 String[] AxisService.getEPRs()
           
static AxisOperation AxisOperationFactory.getOperationDescription(String mepURI)
           
 AxisService AxisServiceGroup.getService(String name)
           
static TransportInDescription ClientUtils.inferInTransport(AxisConfiguration ac, Options options, MessageContext msgCtxt)
           
static TransportOutDescription ClientUtils.inferOutTransport(AxisConfiguration ac, EndpointReference epr, MessageContext msgctx)
           
 List WSDL11ToAllAxisServicesBuilder.populateAllServices()
          Public method to access the wsdl 1.1 file and create a List of AxisService objects.
 List WSDL20ToAllAxisServicesBuilder.populateAllServices()
          Public method to access the wsdl 2.0 file and create a List of AxisService objects.
 AxisService WSDL11ToAxisServiceBuilder.populateService()
          populates a given service This is the only publicly accessible method in this class
 AxisService WSDL20ToAxisServiceBuilder.populateService()
           
abstract  AxisService WSDLToAxisServiceBuilder.populateService()
           
 void AxisService.printSchema(OutputStream out)
           
 void AxisService.printWSDL(OutputStream out)
          Print the WSDL with a default URL.
 void AxisService.printWSDL(OutputStream out, String requestIP)
          Deprecated. try to use the method which takes three arguments
 void AxisService.printWSDL(OutputStream out, String requestIP, String servicePath)
           
 void AxisService.printWSDL2(OutputStream out)
           
 void AxisService.printWSDL2(OutputStream out, String requestIP, String servicePath)
           
 void AxisOperation.registerMessageContext(MessageContext msgContext, OperationContext operationContext)
           
 void AxisOperation.registerOperationContext(MessageContext msgContext, OperationContext operationContext)
           
 void AxisDescription.removeParameter(Parameter param)
           
 void AxisModule.removeParameter(Parameter param)
           
 void HandlerDescription.removeParameter(Parameter param)
           
 void ModuleConfiguration.removeParameter(Parameter param)
           
 void ParameterInclude.removeParameter(Parameter param)
           
 void ParameterIncludeImpl.removeParameter(Parameter param)
           
 void TransportInDescription.removeParameter(Parameter param)
           
 void TransportOutDescription.removeParameter(Parameter param)
           
 void AxisServiceGroup.removeService(String name)
           
protected  void WSDL20ToAxisServiceBuilder.setup()
          contains all code which gathers non-service specific information from the wsdl.
 

Uses of AxisFault in org.apache.axis2.engine
 

Methods in org.apache.axis2.engine that throw AxisFault
 void ListenerManager.addListener(TransportInDescription trsIn, boolean started)
           
 void AxisConfiguration.addModule(AxisModule module)
          Method addModule.
 void AxisConfiguration.addService(AxisService service)
          Method addService.
 void AxisConfiguration.addServiceGroup(AxisServiceGroup axisServiceGroup)
           
 void AxisConfiguration.addTransportIn(TransportInDescription transport)
          Method addTransportIn.
 void AxisConfiguration.addTransportOut(TransportOutDescription transport)
          Method addTransportOut.
 void DispatchPhase.checkPostConditions(MessageContext msgContext)
           
 void Phase.checkPostConditions(MessageContext msgContext)
           
 void Phase.checkPreconditions(MessageContext msgContext)
           
 MessageContext AxisEngine.createFaultMessageContext(MessageContext processingContext, Throwable e)
          This method is called to handle any error that occurs at inflow or outflow.
static void DependencyManager.destroyServiceObject(ServiceContext serviceContext)
          To startup service when user puts load-on-startup parameter
 void AxisConfigurator.engageGlobalModules()
          Engages the global modules specified in the configuration
 void AxisConfiguration.engageModule(AxisModule axisModule, AxisConfiguration axisConfig)
           
 void AxisConfiguration.engageModule(QName moduleref)
          Engages the default module version corresponding to given module name , or if the module name contains version number in it then it will engage the correct module.
 void AxisConfiguration.engageModule(String moduleName, String versionID)
          Engages a module using give name and its version ID.
abstract  AxisOperation AbstractDispatcher.findOperation(AxisService service, MessageContext messageContext)
          Called by Axis Engine to find the operation.
 AxisOperation AddressingBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation RequestURIBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation SOAPActionBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
 AxisOperation SOAPMessageBodyBasedDispatcher.findOperation(AxisService service, MessageContext messageContext)
           
abstract  AxisService AbstractDispatcher.findService(MessageContext messageContext)
          Called by Axis Engine to find the service.
 AxisService AddressingBasedDispatcher.findService(MessageContext messageContext)
           
 AxisService RequestURIBasedDispatcher.findService(MessageContext messageContext)
           
 AxisService SOAPActionBasedDispatcher.findService(MessageContext messageContext)
           
 AxisService SOAPMessageBodyBasedDispatcher.findService(MessageContext messageContext)
           
 AxisConfiguration AxisConfigurator.getAxisConfiguration()
          Configurationcontextfactory will invoke this method to get the AxisConfiguration
 EndpointReference ListenerManager.getEPRforService(String serviceName, String opName, String transportName)
          To get an EPR for a given service
 Object DefaultObjectSupplier.getObject(Class clazz)
           
 Object ObjectSupplier.getObject(Class clazz)
          If someone want to write service impl class with interface being there method parameter , then at the time of deserilization this method will provide the impl class for that interface.
 AxisService AxisConfiguration.getService(String name)
          Method getService.
 TransportInDescription AxisConfiguration.getTransportIn(QName name)
           
 TransportOutDescription AxisConfiguration.getTransportOut(QName name)
           
static void DependencyManager.initService(ServiceGroupContext serviceGroupContext)
          To init all the services in application scope
static void DependencyManager.initServiceClass(Object obj, ServiceContext serviceContext)
           
 Handler.InvocationResponse AbstractDispatcher.invoke(MessageContext msgctx)
           
 Handler.InvocationResponse AddressingBasedDispatcher.invoke(MessageContext msgctx)
           
 Handler.InvocationResponse AxisEngine.invoke(MessageContext msgContext)
          Take the execution chain from the msgContext , and then take the current Index and invoke all the phases in the arraylist if the msgContext is pauesd then the execution will be breaked
 Handler.InvocationResponse Handler.invoke(MessageContext msgContext)
          Invoke is called to do the actual work of the Handler object.
 Handler.InvocationResponse InstanceDispatcher.invoke(MessageContext msgContext)
          Post Condition : All the Contexts must be populated.
 Handler.InvocationResponse Phase.invoke(MessageContext msgctx)
          invokes all the handlers in this Phase
 void AxisEngine.receive(MessageContext msgContext)
          This methods represents the inflow of the Axis, this could be either at the server side or the client side.
 void MessageReceiver.receive(MessageContext messageCtx)
           
 void AxisEngine.receiveFault(MessageContext msgContext)
          This is invoked when a SOAP Fault is received from a Other SOAP Node Receives a SOAP fault from another SOAP node.
 void AxisConfiguration.removeService(String name)
          Method removeService.
 void AxisConfiguration.removeServiceGroup(String serviceGroupName)
           
 Handler.InvocationResponse AxisEngine.resume(MessageContext msgctx)
          Resume processing of a message.
 Handler.InvocationResponse AxisEngine.resumeReceive(MessageContext msgContext)
          If the msgConetext is puased and try to invoke then first invoke the phase list and after the message receiver
 Handler.InvocationResponse AxisEngine.resumeSend(MessageContext msgContext)
          To resume the invocation at the send path , this is neened since it is require to call TransportSender at the end
 void AxisEngine.send(MessageContext msgContext)
          This methods represents the outflow of the Axis, this could be either at the server side or the client side.
 void AxisEngine.sendFault(MessageContext msgContext)
          Sends the SOAP Fault to another SOAP node.
 void AxisConfiguration.startService(String serviceName)
           
 void ListenerManager.stop()
          Stop all the transports and notify modules of shutdown.
 void AxisConfiguration.stopService(String serviceName)
           
 

Uses of AxisFault in org.apache.axis2.extensions.spring.receivers
 

Methods in org.apache.axis2.extensions.spring.receivers that throw AxisFault
 Object SpringServletContextObjectSupplier.getServiceObject(AxisService axisService)
          Method getServiceObject that is Spring aware via ServletContext.
 Object SpringAppContextAwareObjectSupplier.getServiceObject(AxisService axisService)
          Method getServiceObject that is Spring aware via Spring interface ApplicationContextAware.
 

Uses of AxisFault in org.apache.axis2.handlers.addressing
 

Methods in org.apache.axis2.handlers.addressing that throw AxisFault
protected  void AddressingFinalInHandler.checkForMandatoryHeaders(ArrayList alreadyFoundAddrHeader, MessageContext messageContext)
           
protected abstract  void AddressingInHandler.checkForMandatoryHeaders(ArrayList alreadyFoundAddrHeader, MessageContext messageContext)
           
protected  void AddressingSubmissionInHandler.checkForMandatoryHeaders(ArrayList alreadyFoundAddrHeader, MessageContext messageContext)
           
protected  Options AddressingInHandler.extractAddressingInformation(org.apache.axiom.soap.SOAPHeader header, MessageContext messageContext, ArrayList addressingHeaders, String namespace)
           
 Handler.InvocationResponse AddressingInHandler.invoke(MessageContext msgContext)
           
 Handler.InvocationResponse AddressingOutHandler.invoke(MessageContext msgContext)
           
 Handler.InvocationResponse AddressingWSDLValidationHandler.invoke(MessageContext msgContext)
           
protected abstract  void AddressingInHandler.setDefaults(ArrayList alreadyFoundAddrHeader, MessageContext messageContext)
           
 

Uses of AxisFault in org.apache.axis2.handlers.soapmonitor
 

Methods in org.apache.axis2.handlers.soapmonitor that throw AxisFault
 void SOAPMonitorModule.applyPolicy(org.apache.neethi.Policy policy, AxisDescription axisDescription)
           
 void SOAPMonitorModule.engageNotify(AxisDescription axisDescription)
           
 void SOAPMonitorModule.init(ConfigurationContext configContext, AxisModule module)
           
 Handler.InvocationResponse SOAPMonitorHandler.invoke(MessageContext messageContext)
          Process and SOAP message
 void SOAPMonitorModule.shutdown(ConfigurationContext configContext)
           
 

Uses of AxisFault in org.apache.axis2.modules
 

Methods in org.apache.axis2.modules that throw AxisFault
 void Module.applyPolicy(org.apache.neethi.Policy policy, AxisDescription axisDescription)
          Evaluates specified policy for the specified AxisDescription.
 void Module.engageNotify(AxisDescription axisDescription)
          When engaging this module to some service or operation , module will be notify by calling this method there module author can validate , add policy and do any thing that he want , and he can refuce the engage as well
 void Module.init(ConfigurationContext configContext, AxisModule module)
           
 void Module.shutdown(ConfigurationContext configurationContext)
           
 

Uses of AxisFault in org.apache.axis2.phaseresolver
 

Subclasses of AxisFault in org.apache.axis2.phaseresolver
 class PhaseException
          Class PhaseException
 

Uses of AxisFault in org.apache.axis2.receivers
 

Methods in org.apache.axis2.receivers with parameters of type AxisFault
 void ServerCallback.handleFault(AxisFault fault)
           
 

Methods in org.apache.axis2.receivers that throw AxisFault
 org.apache.axiom.soap.SOAPFactory AbstractMessageReceiver.getSOAPFactory(MessageContext msgContext)
           
protected  Object AbstractMessageReceiver.getTheImplementationObject(MessageContext msgContext)
          Method getTheImplementationObject.
 void ServerCallback.handleFault(AxisFault fault)
           
 void ServerCallback.handleResult(MessageContext result)
           
abstract  void AbstractInMessageReceiver.invokeBusinessLogic(MessageContext inMessage)
           
abstract  void AbstractRobustInMessageReceiver.invokeBusinessLogic(MessageContext inMessage)
           
 void RawXMLINOnlyMessageReceiver.invokeBusinessLogic(MessageContext msgContext)
          Invokes the bussiness logic invocation on the service implementation class
abstract  void AbstractInOutAsyncMessageReceiver.invokeBusinessLogic(MessageContext inMessage, MessageContext outMessage)
           
abstract  void AbstractInOutSyncMessageReceiver.invokeBusinessLogic(MessageContext inMessage, MessageContext outMessage)
           
 void RawXMLINOutAsyncMessageReceiver.invokeBusinessLogic(MessageContext msgContext, MessageContext newmsgContext)
          Invokes the bussiness logic invocation on the service implementation class
 void RawXMLINOutMessageReceiver.invokeBusinessLogic(MessageContext msgContext, MessageContext newmsgContext)
          Invokes the bussiness logic invocation on the service implementation class
protected  Object AbstractMessageReceiver.makeNewServiceObject(MessageContext msgContext)
          Method makeNewServiceObject.
 void AbstractInMessageReceiver.receive(MessageContext messageCtx)
           
 void AbstractInOutSyncMessageReceiver.receive(MessageContext msgContext)
           
 void AbstractRobustInMessageReceiver.receive(MessageContext messageCtx)
           
 

Uses of AxisFault in org.apache.axis2.rpc.client
 

Methods in org.apache.axis2.rpc.client that throw AxisFault
 org.apache.axiom.om.OMElement RPCServiceClient.invokeBlocking(QName opName, Object[] args)
          Return value can be a single a object or an object array (itself an object) , but it is difficulty to figure the return object correctly unless we have TyepMapping in the client side too.
 Object[] RPCServiceClient.invokeBlocking(QName opName, Object[] args, Class[] returnTypes)
           
 void RPCServiceClient.invokeNonBlocking(QName opName, Object[] args, Callback callback)
          Invoke the nonblocking/Asynchronous call
 void RPCServiceClient.invokeRobust(QName opName, Object[] args)
           
 

Constructors in org.apache.axis2.rpc.client that throw AxisFault
RPCServiceClient()
           
RPCServiceClient(ConfigurationContext configContext, AxisService service)
           
RPCServiceClient(ConfigurationContext configContext, URL wsdlURL, QName wsdlServiceName, String portName)
           
 

Uses of AxisFault in org.apache.axis2.rpc.receivers
 

Methods in org.apache.axis2.rpc.receivers that throw AxisFault
 void RPCInOnlyMessageReceiver.invokeBusinessLogic(MessageContext inMessage)
           
 void RPCInOutAsyncMessageReceiver.invokeBusinessLogic(MessageContext inMessage, MessageContext outMessage)
          reflect and get the Java method - for each i'th param in the java method - get the first child's i'th child -if the elem has an xsi:type attr then find the deserializer for it - if not found, lookup deser for th i'th param (java type) - error if not found - deserialize & save in an object array - end for

- invoke method and get the return value

- look up serializer for return value based on the value and type

- create response msg and add return value as grand child of

 void RPCMessageReceiver.invokeBusinessLogic(MessageContext inMessage, MessageContext outMessage)
          reflect and get the Java method - for each i'th param in the java method - get the first child's i'th child -if the elem has an xsi:type attr then find the deserializer for it - if not found, lookup deser for th i'th param (java type) - error if not found - deserialize & save in an object array - end for

- invoke method and get the return value

- look up serializer for return value based on the value and type

- create response msg and add return value as grand child of

static Object[] RPCUtil.processRequest(org.apache.axiom.om.OMElement methodElement, Method method, ObjectSupplier objectSupplier)
           
 

Uses of AxisFault in org.apache.axis2.transport
 

Methods in org.apache.axis2.transport that throw AxisFault
 void RequestResponseTransport.acknowledgeMessage(MessageContext msgContext)
           
 void TransportSender.cleanup(MessageContext msgContext)
          Clean up
static org.apache.axiom.soap.SOAPEnvelope TransportUtils.createSOAPMessage(MessageContext msgContext, InputStream inStream, String soapNamespaceURI)
           
static org.apache.axiom.soap.SOAPEnvelope TransportUtils.createSOAPMessage(MessageContext msgContext, String soapNamespaceURI)
           
abstract  void AbstractTransportSender.finalizeSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
abstract  void AbstractTransportSender.finalizeSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 EndpointReference TransportListener.getEPRForService(String serviceName, String ip)
          Deprecated. Transport listener can expose more than EPRs. So this method should return an array of EPRs. Deprecating this method for now and please use getEPRsForServices instead.
 EndpointReference[] TransportListener.getEPRsForService(String serviceName, String ip)
           
 void TransportListener.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
           
 void AbstractTransportSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
           
 void TransportSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
          Initialize
 Handler.InvocationResponse AbstractTransportSender.invoke(MessageContext msgContext)
          Method invoke
protected abstract  OutputStream AbstractTransportSender.openTheConnection(EndpointReference epr, MessageContext msgctx)
           
 void TransportListener.start()
           
abstract  OutputStream AbstractTransportSender.startSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
abstract  OutputStream AbstractTransportSender.startSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 void TransportListener.stop()
           
 void AbstractTransportSender.writeMessage(MessageContext msgContext, OutputStream out)
           
 

Uses of AxisFault in org.apache.axis2.transport.http
 

Methods in org.apache.axis2.transport.http with parameters of type AxisFault
protected  void AxisServlet.handleFault(MessageContext msgContext, OutputStream out, AxisFault e)
           
 

Methods in org.apache.axis2.transport.http that throw AxisFault
 void CommonsHTTPTransportSender.cleanup(MessageContext msgContext)
           
protected  void AbstractHTTPSender.configProxyAuthentication(org.apache.commons.httpclient.HttpClient client, TransportOutDescription proxySetting, org.apache.commons.httpclient.HostConfiguration config, MessageContext msgCtx)
          Helper method to Proxy and NTLM authentication
protected  MessageContext AxisServlet.createAndSetInitialParamsToMsgCtxt(HttpServletResponse resp, HttpServletRequest req)
           
static org.apache.axiom.soap.SOAPEnvelope HTTPTransportUtils.createEnvelopeFromGetRequest(String requestUrl, Map map, ConfigurationContext configCtx)
           
 EndpointReference AxisServlet.getEPRForService(String serviceName, String ip)
           
 EndpointReference SimpleHTTPServer.getEPRForService(String serviceName, String ip)
          replyToEPR If the user has given host address paramter then it gets the high priority and ERP will be creatd using that N:B - hostAddress should be a complte url (http://www.myApp.com/ws)
 EndpointReference[] AxisServlet.getEPRsForService(String serviceName, String ip)
           
 EndpointReference[] SimpleHTTPServer.getEPRsForService(String serviceName, String ip)
          replyToEPR If the user has given host address paramter then it gets the high priority and ERP will be creatd using that N:B - hostAddress should be a complete url (http://www.myApp.com/ws)
protected  org.apache.commons.httpclient.HostConfiguration AbstractHTTPSender.getHostConfiguration(org.apache.commons.httpclient.HttpClient client, MessageContext msgCtx, URL targetURL)
          getting host configuration to support standard http/s, proxy and NTLM support
protected  void AxisServlet.handleFault(MessageContext msgContext, OutputStream out, AxisFault e)
           
 void AxisServlet.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
          To initilze as TransportListener , not as Servlet
 void SimpleHTTPServer.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
          init method in TransportListener
 void CommonsHTTPTransportSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
           
 Handler.InvocationResponse CommonsHTTPTransportSender.invoke(MessageContext msgContext)
           
 HashMap HTTPTransportReceiver.parseTheHeaders(InputStream in, boolean serverSide)
          Parses following two styles of HTTP stuff Server Side POST /axis2/services/echo HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text User-Agent: Axis/1.2RC1 Host: 127.0.0.1:8081 Cache-Control: no-cache Pragma: no-cache SOAPAction: "" Content-Length: 73507 HTTP/1.1 200 OK Content-Type: text/xml;charset=utf-8 Date: Sat, 12 Feb 2005 10:39:39 GMT Server: Apache-Coyote/1.1 Connection: close
static boolean HTTPTransportUtils.processHTTPGetRequest(MessageContext msgContext, OutputStream out, String soapAction, String requestURI, ConfigurationContext configurationContext, Map requestParameters)
           
static void HTTPTransportUtils.processHTTPPostRequest(MessageContext msgContext, InputStream in, OutputStream out, String contentType, String soapActionHeader, String requestURI)
           
abstract  void AbstractHTTPSender.send(MessageContext msgContext, org.apache.axiom.om.OMElement dataout, URL url, String soapActionString)
           
 void SOAPOverHTTPSender.send(MessageContext msgContext, org.apache.axiom.om.OMElement dataout, URL url, String soapActionString)
           
protected  void AbstractHTTPSender.setAuthenticationInfo(org.apache.commons.httpclient.HttpClient agent, MessageContext msgCtx, org.apache.commons.httpclient.HostConfiguration config, URL targetURL)
           
 void AbstractHTTPSender.setHttpVersion(String version)
           
 void AxisServlet.start()
           
 void SimpleHTTPServer.start()
          Start this server as a NON-daemon.
 void AxisServlet.stop()
           
 byte[] RESTSender.AxisRequestEntity.writeBytes()
           
 byte[] SOAPOverHTTPSender.AxisSOAPRequestEntity.writeBytes()
           
 void CommonsHTTPTransportSender.writeMessageWithCommons(MessageContext messageContext, EndpointReference toEPR, org.apache.axiom.om.OMElement dataout, org.apache.axiom.om.OMOutputFormat format)
           
 

Constructors in org.apache.axis2.transport.http that throw AxisFault
SimpleHTTPServer(ConfigurationContext configurationContext, int port)
          Create a SimpleHTTPServer using default HttpFactory settings
SimpleHTTPServer(HttpFactory httpFactory)
          Create a configured SimpleHTTPServer
 

Uses of AxisFault in org.apache.axis2.transport.http.server
 

Constructors in org.apache.axis2.transport.http.server that throw AxisFault
HttpFactory(ConfigurationContext configurationContext)
          Create and configure a new HttpFactory
HttpFactory(ConfigurationContext configurationContext, int port)
          Create and configure a new HttpFactory
HttpFactory(ConfigurationContext configurationContext, int port, WorkerFactory requestWorkerFactory)
          Create and configure a new HttpFactory
 

Uses of AxisFault in org.apache.axis2.transport.http.util
 

Methods in org.apache.axis2.transport.http.util that throw AxisFault
 boolean RESTUtil.processGetRequest(MessageContext msgContext, HttpServletRequest request, HttpServletResponse response)
           
 boolean RESTUtil.processPostRequest(MessageContext msgContext, HttpServletRequest request, HttpServletResponse response)
           
 boolean SOAPUtil.processPostRequest(MessageContext msgContext, HttpServletRequest request, HttpServletResponse response)
          Handle SOAP Messages
 

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

Methods in org.apache.axis2.transport.jms that throw AxisFault
 void JMSSender.cleanup(MessageContext msgContext)
           
 EndpointReference JMSListener.getEPRForService(String serviceName, String ip)
          Returns the EPR for the given service and IP.
 EndpointReference[] JMSListener.getEPRsForService(String serviceName, String ip)
          Returns EPRs for the given service and IP.
 void JMSSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
           
 Handler.InvocationResponse JMSSender.invoke(MessageContext msgContext)
          Performs the actual sending of the JMS message
 void JMSListener.start()
          Start this JMS Listener (Transport Listener)
 

Uses of AxisFault in org.apache.axis2.transport.local
 

Methods in org.apache.axis2.transport.local that throw AxisFault
 void LocalResponder.cleanup(MessageContext msgContext)
          Clean up
 void LocalTransportSender.cleanup(MessageContext msgContext)
           
 void LocalResponder.finalizeSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
 void LocalTransportSender.finalizeSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
 void LocalResponder.finalizeSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 void LocalTransportSender.finalizeSendWithToAddress(MessageContext msgContext, OutputStream out)
           
protected  OutputStream LocalResponder.openTheConnection(EndpointReference epr, MessageContext msgctx)
           
protected  OutputStream LocalTransportSender.openTheConnection(EndpointReference epr, MessageContext msgContext)
           
 void LocalTransportReceiver.processMessage(InputStream in, EndpointReference to)
           
 OutputStream LocalResponder.startSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
 OutputStream LocalTransportSender.startSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
 OutputStream LocalResponder.startSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 OutputStream LocalTransportSender.startSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 

Uses of AxisFault in org.apache.axis2.transport.mail
 

Methods in org.apache.axis2.transport.mail that throw AxisFault
 void MailTransportSender.cleanup(MessageContext msgContext)
           
 void EmailReceiver.connect()
           
 void EmailReceiver.disconnect()
           
 void MailTransportSender.finalizeSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
 void MailTransportSender.finalizeSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 EndpointReference SimpleMailListener.getEPRForService(String serviceName, String ip)
           
 EndpointReference[] SimpleMailListener.getEPRsForService(String serviceName, String ip)
           
 void SimpleMailListener.init(ConfigurationContext configurationContext, TransportInDescription transportIn)
           
 void MailTransportSender.init(ConfigurationContext configurationContext, TransportOutDescription transportOut)
           
static void SimpleMailListener.main(String[] args)
          Server process.
protected  OutputStream MailTransportSender.openTheConnection(EndpointReference epr, MessageContext msgContext)
           
 javax.mail.Message[] EmailReceiver.receiveMessages()
           
 void EMailSender.send(String subject, String targetEmail, String message, org.apache.axiom.om.OMOutputFormat format)
           
 void MailWorkerManager.start()
           
 void SimpleMailListener.start()
          Start this listener
 OutputStream MailTransportSender.startSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
 OutputStream MailTransportSender.startSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 void MailTransportSender.writeMessage(MessageContext msgContext, OutputStream out)
           
 

Uses of AxisFault in org.apache.axis2.transport.mail.server
 

Methods in org.apache.axis2.transport.mail.server that throw AxisFault
 void MailServer.stop()
           
 void POP3Server.stopServer()
           
 void SMTPServer.stopServer()
           
 

Constructors in org.apache.axis2.transport.mail.server that throw AxisFault
MailServer(ConfigurationContext configurationContext, int popPort, int smtpPort)
           
MailServer(int popPort, int smtpPort)
           
MailServer(String dir, int popPort, int smtpPort)
           
POP3Server(Storage st, int port)
           
 

Uses of AxisFault in org.apache.axis2.transport.tcp
 

Methods in org.apache.axis2.transport.tcp that throw AxisFault
 void TCPTransportSender.cleanup(MessageContext msgContext)
           
 void TCPTransportSender.finalizeSendWithToAddress(MessageContext msgContext, OutputStream out)
           
 EndpointReference TCPServer.getEPRForService(String serviceName, String ip)
          I fthe hostAddress parameter is present in axis2.xml then the EPR will be created by taking the hostAddres into account (non-Javadoc)
 EndpointReference[] TCPServer.getEPRsForService(String serviceName, String ip)
           
 void TCPServer.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
           
static void TCPServer.main(String[] args)
           
 ServerSocket TCPServer.openSocket(int port)
          Controls the number of server sockets kept open.
protected  OutputStream TCPTransportSender.openTheConnection(EndpointReference toURL, MessageContext msgContext)
           
 void TCPServer.start()
           
 OutputStream TCPTransportSender.startSendWithOutputStreamFromIncomingConnection(MessageContext msgContext, OutputStream out)
           
 void TCPServer.stop()
           
 

Constructors in org.apache.axis2.transport.tcp that throw AxisFault
TCPServer(int port, ConfigurationContext configContext)
           
TCPServer(int port, String dir)
           
 

Uses of AxisFault in org.apache.axis2.util
 

Methods in org.apache.axis2.util that throw AxisFault
static boolean Utils.checkVersion(QName deployingModuleName, QName deployedModulename)
          Will check whether a given module can be engage or not if the version mismamathc then thow en exception - if he trying to engage the same module then method will returen false - else it will return true
static MessageContext Utils.createOutMessageContext(MessageContext inMessageContext)
           
static AxisService Utils.createSimpleService(QName serviceName, MessageReceiver messageReceiver, String className, QName opName)
           
static AxisService Utils.createSimpleService(QName serviceName, String className, QName opName)
           
static AxisService Utils.createSimpleServiceforClient(QName serviceName, MessageReceiver messageReceiver, String className, QName opName)
           
static AxisService Utils.createSimpleServiceforClient(QName serviceName, String className, QName opName)
           
static org.apache.axiom.soap.SOAPEnvelope SchemaUtil.handleMediaTypeURLEncoded(MessageContext msgCtxt, HttpServletRequest request, org.apache.ws.commons.schema.XmlSchemaElement xmlSchemaElement, org.apache.axiom.soap.SOAPFactory soapFactory)
          This method is designed for REST handling.
 void ThreadContextMigrator.migrateContextToThread(MessageContext messageContext)
          This method will be invoked when the processing of the message is guaranteed to be on the thread of execution that will be used in user space.
 void ThreadContextMigrator.migrateThreadToContext(MessageContext messageContext)
          This method will be invoked when the processing of the message is guaranteed to still be on the thread of execution that was used in user space.
static void ThreadContextMigratorUtil.performMigrationToContext(String threadContextMigratorListID, MessageContext msgContext)
          Activate any registered ThreadContextMigrators to move info from the thread of execution into the context.
static void ThreadContextMigratorUtil.performMigrationToThread(String threadContextMigratorListID, MessageContext msgContext)
          Activate any registered ThreadContextMigrators to move context info to the thread of execution.
 void CallbackReceiver.receive(MessageContext messageCtx)
           
 

Uses of AxisFault in org.apache.axis2.util.threadpool
 

Methods in org.apache.axis2.util.threadpool that throw AxisFault
 void ThreadPool.safeShutDown()
          This is the recommended shutdown method for the thread pool This will wait till all the workers that are already handed over to the thread pool get executed.