Uses of Class
org.apache.axis.MessageContext

Packages that use MessageContext
org.apache.axis   
org.apache.axis.client   
org.apache.axis.encoding   
org.apache.axis.handlers   
org.apache.axis.handlers.http   
org.apache.axis.handlers.soap   
org.apache.axis.providers   
org.apache.axis.providers.java   
org.apache.axis.server   
org.apache.axis.transport.http   
org.apache.axis.transport.local   
org.apache.axis.utils   
 

Uses of MessageContext in org.apache.axis
 

Methods in org.apache.axis that return MessageContext
 MessageContext Message.getMessageContext()
           
 

Methods in org.apache.axis with parameters of type MessageContext
 void SimpleChain.invoke(MessageContext msgContext)
          Iterate over the chain invoking each handler.
 void SimpleChain.undo(MessageContext msgContext)
          Undo all of the work this chain completed because some handler later on has faulted - in reverse order.
 void Message.setMessageContext(MessageContext msgContext)
           
 void FaultableHandler.invoke(MessageContext msgContext)
          Invokes the specified handler.
 void FaultableHandler.undo(MessageContext msgContext)
          Some handler later on has faulted so we need to undo our work.
 void Handler.invoke(MessageContext msgContext)
          Invoke is called to do the actual work of the Handler object.
 void Handler.undo(MessageContext msgContext)
          Called when a fault occurs to 'undo' whatever 'invoke' did.
 void SimpleTargetedChain.invoke(MessageContext msgContext)
          Invoke the request chain, pivot handler and response chain.
 void SimpleTargetedChain.undo(MessageContext msgContext)
          Undo all of the work - in reverse order.
 

Uses of MessageContext in org.apache.axis.client
 

Methods in org.apache.axis.client that return MessageContext
 MessageContext ServiceClient.getMessageContext()
          Obtain a reference to our MessageContext.
 

Methods in org.apache.axis.client with parameters of type MessageContext
abstract  void Transport.setupMessageContext(MessageContext context, ServiceClient message, AxisEngine engine)
          Set up any transport-specific derived properties in the message context.
 void AxisClient.invoke(MessageContext msgContext)
          Main routine of the AXIS engine.
 void AxisClient.undo(MessageContext msgContext)
           
 

Uses of MessageContext in org.apache.axis.encoding
 

Fields in org.apache.axis.encoding declared as MessageContext
protected  MessageContext DeserializationContext.msgContext
           
 

Methods in org.apache.axis.encoding that return MessageContext
 MessageContext DeserializationContext.getMessageContext()
           
 

Constructors in org.apache.axis.encoding with parameters of type MessageContext
SerializationContext(java.io.Writer writer, MessageContext msgContext)
           
DeserializationContext(MessageContext ctx, java.lang.String messageType)
           
DeserializationContext(org.xml.sax.InputSource is, MessageContext ctx, java.lang.String messageType)
           
 

Uses of MessageContext in org.apache.axis.handlers
 

Methods in org.apache.axis.handlers with parameters of type MessageContext
abstract  void BasicHandler.undo(MessageContext msgContext)
          Must implement this in subclasses.
abstract  void BasicHandler.invoke(MessageContext msgContext)
          Must implement this in subclasses.
 void DebugHandler.invoke(MessageContext msgContext)
           
 void DebugHandler.undo(MessageContext msgContext)
           
 void ErrorHandler.invoke(MessageContext msgContext)
           
 void ErrorHandler.undo(MessageContext msgContext)
           
 void SimpleAuthenticationHandler.invoke(MessageContext msgContext)
          Authenticate the user and password from the msgContext
 void SimpleAuthenticationHandler.undo(MessageContext msgContext)
          Nothing to undo
 void JWSProcessor.invoke(MessageContext msgContext)
           
 void JWSProcessor.undo(MessageContext msgContext)
           
 void LogHandler.invoke(MessageContext msgContext)
           
 void LogHandler.undo(MessageContext msgContext)
           
 void LogMessage.invoke(MessageContext context)
           
 void LogMessage.undo(MessageContext msgContext)
           
 void JWSHandler.invoke(MessageContext msgContext)
           
 void JWSHandler.undo(MessageContext msgContext)
           
 void EchoHandler.invoke(MessageContext msgContext)
           
 void EchoHandler.undo(MessageContext msgContext)
           
 void SimpleAuthorizationHandler.invoke(MessageContext msgContext)
          Authorize the user and targetService from the msgContext
 void SimpleAuthorizationHandler.undo(MessageContext msgContext)
          Nothing to undo
 

Uses of MessageContext in org.apache.axis.handlers.http
 

Methods in org.apache.axis.handlers.http with parameters of type MessageContext
 void URLMapper.invoke(MessageContext msgContext)
           
 void URLMapper.undo(MessageContext msgContext)
           
 void HTTPActionHandler.invoke(MessageContext msgContext)
           
 void HTTPActionHandler.undo(MessageContext msgContext)
           
 void HTTPAuthHandler.invoke(MessageContext msgContext)
           
 void HTTPAuthHandler.undo(MessageContext msgContext)
           
 

Uses of MessageContext in org.apache.axis.handlers.soap
 

Methods in org.apache.axis.handlers.soap with parameters of type MessageContext
 void SOAPService.invoke(MessageContext msgContext)
           
 void SOAPService.undo(MessageContext msgContext)
           
 

Uses of MessageContext in org.apache.axis.providers
 

Methods in org.apache.axis.providers with parameters of type MessageContext
 void BSFProvider.invoke(MessageContext msgContext)
           
 void BSFProvider.undo(MessageContext msgContext)
           
 void JWSProvider.invoke(MessageContext msgContext)
           
 void JWSProvider.undo(MessageContext msgContext)
           
 void ComProvider.invoke(MessageContext msgContext)
           
 void ComProvider.undo(MessageContext msgContext)
           
 

Uses of MessageContext in org.apache.axis.providers.java
 

Methods in org.apache.axis.providers.java with parameters of type MessageContext
 java.lang.Object JavaProvider.getServiceObject(MessageContext msgContext, Handler service, JavaClass jc, java.lang.String clsName)
          Get the service object whose method actually provides the service.
abstract  void JavaProvider.processMessage(MessageContext msgContext, java.lang.String clsName, java.lang.String methodName, SOAPEnvelope reqEnv, SOAPEnvelope resEnv, JavaClass jc, java.lang.Object obj)
          Process the current message.
 void JavaProvider.invoke(MessageContext msgContext)
          Invoke the message by obtaining various common fields, looking up the service object (via getServiceObject), and actually processing the message (via processMessage).
 void JavaProvider.undo(MessageContext msgContext)
           
 void MsgProvider.processMessage(MessageContext msgContext, java.lang.String clsName, java.lang.String methodName, SOAPEnvelope reqEnv, SOAPEnvelope resEnv, JavaClass jc, java.lang.Object obj)
          This is pretty much a pass-thru to the util.Admin tool.
 void MsgProvider.undo(MessageContext msgContext)
           
 void RPCProvider.processMessage(MessageContext msgContext, java.lang.String clsName, java.lang.String methodName, SOAPEnvelope reqEnv, SOAPEnvelope resEnv, JavaClass jc, java.lang.Object obj)
           
 

Uses of MessageContext in org.apache.axis.server
 

Methods in org.apache.axis.server with parameters of type MessageContext
 void AxisServer.invoke(MessageContext msgContext)
          Main routine of the AXIS server.
 void AxisServer.undo(MessageContext msgContext)
           
 

Uses of MessageContext in org.apache.axis.transport.http
 

Methods in org.apache.axis.transport.http with parameters of type MessageContext
 void HTTPTransport.setupMessageContext(MessageContext mc, ServiceClient serviceClient, AxisEngine engine)
          Set up any transport-specific derived properties in the message context.
 void HTTPSender.invoke(MessageContext msgContext)
           
 void HTTPSender.handleCookie(java.lang.String cookieName, java.lang.String setCookieName, java.util.Hashtable headers, MessageContext msgContext)
           
 void HTTPSender.undo(MessageContext msgContext)
           
 

Uses of MessageContext in org.apache.axis.transport.local
 

Methods in org.apache.axis.transport.local with parameters of type MessageContext
 void LocalTransport.setupMessageContext(MessageContext mc, ServiceClient serv, AxisEngine engine)
          Set up any transport-specific derived properties in the message context.
 void LocalSender.invoke(MessageContext clientContext)
           
 void LocalSender.undo(MessageContext msgContext)
           
 void LocalResponder.invoke(MessageContext msgContext)
           
 void LocalResponder.undo(MessageContext msgContext)
           
 

Uses of MessageContext in org.apache.axis.utils
 

Methods in org.apache.axis.utils with parameters of type MessageContext
 org.w3c.dom.Document Admin.AdminService(MessageContext msgContext, org.w3c.dom.Document xml)
          Process a given XML document - needs cleanup.
 org.w3c.dom.Document Admin.process(MessageContext msgContext, org.w3c.dom.Element root)
          The meat of the Admin service.
 



Copyright © 2001 Apache XML Project. All Rights Reserved.