Uses of Class
org.apache.axis.AxisFault

Packages that use AxisFault
org.apache.axis   
org.apache.axis.attachments   
org.apache.axis.client   
org.apache.axis.handlers   
org.apache.axis.handlers.http   
org.apache.axis.handlers.soap   
org.apache.axis.message   
org.apache.axis.providers.java   
org.apache.axis.server   
org.apache.axis.strategies   
org.apache.axis.transport.http   
org.apache.axis.transport.local   
org.apache.axis.utils   
 

Uses of AxisFault in org.apache.axis
 

Subclasses of AxisFault in org.apache.axis
 class NoEndPointException
           
 class SerializationException
           
 

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

Methods in org.apache.axis that throw AxisFault
 void Handler.invoke(MessageContext msgContext)
          Invoke is called to do the actual work of the Handler object.
 void Handler.generateWSDL(MessageContext msgContext)
          Obtain WSDL information.
 void SimpleChain.invoke(MessageContext msgContext)
          Iterate over the chain invoking each handler.
 void SimpleChain.generateWSDL(MessageContext msgContext)
          Iterate over the chain letting each handler have a crack at contributing to a WSDL description.
 SOAPEnvelope Message.getSOAPEnvelope()
          Get this message's SOAPPart as a SOAPEnvelope
 java.lang.String Message.getContentType()
           
 int Message.getContentLength()
           
 void FaultableHandler.invoke(MessageContext msgContext)
          Invokes the specified handler.
 byte[] SOAPPart.getAsBytes()
          Get the contents of this Part (not the headers!), as a byte array.
 java.lang.String SOAPPart.getAsString()
          Get the contents of this Part (not the headers!), as a String.
 SOAPEnvelope SOAPPart.getAsSOAPEnvelope()
          Get the contents of this Part (not the MIME headers!), as a SOAPEnvelope.
 void MessageContext.setTargetService(java.lang.String tServ)
          Set the target service for this message.
 void HandlerIterationStrategy.visit(Handler handler, MessageContext msgContext)
           
 Handler AxisEngine.getHandler(java.lang.String name)
           
 SOAPService AxisEngine.getService(java.lang.String name)
           
 Handler AxisEngine.getTransport(java.lang.String name)
           
 Handler Supplier.getHandler()
          Right now this is trivial.
 

Uses of AxisFault in org.apache.axis.attachments
 

Methods in org.apache.axis.attachments that throw AxisFault
 Part MultiPartRelatedInputStream.getAttachmentByReference(java.lang.String[] id)
           
protected  void MultiPartRelatedInputStream.readAll()
           
 java.util.Collection MultiPartRelatedInputStream.getAttachments()
           
protected  Part MultiPartRelatedInputStream.readTillFound(java.lang.String[] id)
          This will read streams in till the one that is needed is found.
 Part AttachmentsImpl.removeAttachmentPart(java.lang.String reference)
          This method uses getAttacmentByReference() to look for attachment.
 Part AttachmentsImpl.addAttachmentPart(Part newPart)
          Adds an existing attachment to this list.
 Part AttachmentsImpl.createAttachmentPart(java.lang.Object datahandler)
          Create an attachment part with a buried JAF data handler.
 void AttachmentsImpl.setAttachmentParts(java.util.Collection parts)
          Add the collection of parts.
 Part AttachmentsImpl.getAttachmentByReference(java.lang.String reference)
          This method should look at a refernce and determine if it is a CID: or url to look for attachment.
 java.util.Collection AttachmentsImpl.getAttachments()
          This method will return all attachments as a collection.
 int AttachmentsImpl.getContentLength()
          Get the content length of the stream.
 void AttachmentsImpl.writeContentToStream(java.io.OutputStream os)
          Write the content to the stream.
 java.lang.String AttachmentsImpl.getContentType()
          Gets the content type for the whole stream.
static javax.mail.internet.MimeMultipart MimeUtils.createMP(java.lang.String env, java.util.Collection parts)
          This routine will create a multipar object from the parts and the SOAP content.
 Part Attachments.addAttachmentPart(Part newPart)
          Adds an existing attachment to this list.
 Part Attachments.removeAttachmentPart(java.lang.String reference)
          This method uses getAttacmentByReference() to look for attachment.
 Part Attachments.getAttachmentByReference(java.lang.String reference)
          This method should look at a refernce and determine if it is a CID: or url to look for attachment.
 java.util.Collection Attachments.getAttachments()
          This method will return all attachments as a collection.
 Part Attachments.createAttachmentPart(java.lang.Object part)
          Create a new attachment Part in this Message.
 void Attachments.setAttachmentParts(java.util.Collection parts)
          Will the attachments of this message to that of the colleciton.
 int Attachments.getContentLength()
          Get the content length of the stream.
 void Attachments.writeContentToStream(java.io.OutputStream os)
          Write the content to the stream.
 java.lang.String Attachments.getContentType()
          Write the content to the stream.
static javax.activation.DataHandler AttachmentUtils.getActiviationDataHandler(Part part)
          Obtain the DataHandler from the part.
 

Constructors in org.apache.axis.attachments that throw AxisFault
MultiPartRelatedInputStream(java.lang.String contentType, java.io.InputStream is)
          Multipart stream.
AttachmentsImpl(java.lang.Object intialContents, java.lang.String contentType, java.lang.String contentLocation)
          Construct one of these on a parent Message.
 

Uses of AxisFault in org.apache.axis.client
 

Methods in org.apache.axis.client that throw AxisFault
 void Transport.setupMessageContext(MessageContext context, Call message, AxisEngine engine)
           
 void Transport.setupMessageContextImpl(MessageContext context, Call message, AxisEngine engine)
           
 java.lang.Object Call.invoke(java.lang.String namespace, java.lang.String method, java.lang.Object[] args)
          Invoke an RPC service with a method name and arguments.
 java.lang.Object Call.invoke(java.lang.String method, java.lang.Object[] args)
          Convenience method to invoke a method with a default (empty) namespace.
 java.lang.Object Call.invoke(RPCElement body)
          Invoke an RPC service with a pre-constructed RPCElement.
 void Call.invoke()
          Invoke this Call with its established MessageContext (perhaps because you called this.setRequestMessage()) Note: Not part of JAX-RPC specification.
 void AxisClient.invoke(MessageContext msgContext)
          Main routine of the AXIS engine.
 

Uses of AxisFault in org.apache.axis.handlers
 

Methods in org.apache.axis.handlers that throw AxisFault
abstract  void BasicHandler.invoke(MessageContext msgContext)
          Must implement this in subclasses.
 void BasicHandler.generateWSDL(MessageContext msgContext)
           
 void DebugHandler.invoke(MessageContext msgContext)
           
 void SimpleSessionHandler.invoke(MessageContext context)
          Process a MessageContext.
 void SimpleSessionHandler.doClient(MessageContext context)
          Client side of processing.
 void SimpleSessionHandler.doServer(MessageContext context)
          Server side of processing.
 void ErrorHandler.invoke(MessageContext msgContext)
           
 void SimpleAuthenticationHandler.invoke(MessageContext msgContext)
          Authenticate the user and password from the msgContext
 void JWSProcessor.invoke(MessageContext msgContext)
           
 void JWSProcessor.invokeImpl(MessageContext msgContext, boolean doWsdl)
           
 void JWSProcessor.generateWSDL(MessageContext msgContext)
           
 void MD5AttachHandler.invoke(MessageContext msgContext)
           
 void LogHandler.invoke(MessageContext msgContext)
           
 void JWSHandler.invoke(MessageContext msgContext)
           
 void JWSHandler.generateWSDL(MessageContext msgContext)
           
 void EchoHandler.invoke(MessageContext msgContext)
           
 void EchoHandler.generateWSDL(MessageContext msgContext)
           
 void SimpleAuthorizationHandler.invoke(MessageContext msgContext)
          Authorize the user and targetService from the msgContext
 

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

Methods in org.apache.axis.handlers.http that throw AxisFault
 void URLMapper.invoke(MessageContext msgContext)
           
 void URLMapper.generateWSDL(MessageContext msgContext)
           
 void HTTPActionHandler.invoke(MessageContext msgContext)
           
 void HTTPAuthHandler.invoke(MessageContext msgContext)
           
 

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

Methods in org.apache.axis.handlers.soap that throw AxisFault
 void SOAPService.generateWSDL(MessageContext msgContext)
          Generate WSDL.
 

Uses of AxisFault in org.apache.axis.message
 

Fields in org.apache.axis.message declared as AxisFault
protected  AxisFault SOAPFaultElement.fault
           
 

Methods in org.apache.axis.message that return AxisFault
 AxisFault SOAPFaultElement.getFault()
           
 

Methods in org.apache.axis.message with parameters of type AxisFault
 void SOAPFaultElement.setFault(AxisFault fault)
           
 

Methods in org.apache.axis.message that throw AxisFault
 java.util.Vector SOAPEnvelope.getBodyElements()
           
 SOAPBodyElement SOAPEnvelope.getFirstBody()
           
 java.util.Vector SOAPEnvelope.getHeaders()
           
 SOAPHeaderElement SOAPEnvelope.getHeaderByName(java.lang.String namespace, java.lang.String localPart)
          Get a header by name (always respecting the currently in-scope actors list)
 SOAPHeaderElement SOAPEnvelope.getHeaderByName(java.lang.String namespace, java.lang.String localPart, boolean accessAllHeaders)
          Get a header by name, filtering for headers targeted at this engine depending on the accessAllHeaders parameter.
 SOAPBodyElement SOAPEnvelope.getBodyByName(java.lang.String namespace, java.lang.String localPart)
           
 java.util.Enumeration SOAPEnvelope.getHeadersByName(java.lang.String namespace, java.lang.String localPart)
           
 java.util.Enumeration SOAPEnvelope.getHeadersByName(java.lang.String namespace, java.lang.String localPart, boolean accessAllHeaders)
          Return an Enumeration of headers which match the given namespace and localPart.
 

Constructors in org.apache.axis.message with parameters of type AxisFault
SOAPFaultElement(AxisFault fault)
           
 

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

Methods in org.apache.axis.providers.java that throw AxisFault
 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.generateWSDL(MessageContext msgContext)
          Generate the WSDL for this service.
 

Uses of AxisFault in org.apache.axis.server
 

Methods in org.apache.axis.server that throw AxisFault
 AxisServer AxisServerFactory.getServer(java.util.Map environment)
           
static AxisServer AxisServer.getServer(java.util.Map environment)
           
 void AxisServer.invoke(MessageContext msgContext)
          Main routine of the AXIS server.
 void AxisServer.generateWSDL(MessageContext msgContext)
           
 AxisServer JNDIAxisServerFactory.getServer(java.util.Map environment)
          Obtain an AxisServer reference, using JNDI if possible, otherwise creating one using the standard Axis configuration pattern.
 AxisServer DefaultAxisServerFactory.getServer(java.util.Map environment)
          Get an AxisServer.
 

Uses of AxisFault in org.apache.axis.strategies
 

Methods in org.apache.axis.strategies that throw AxisFault
 void InvocationStrategy.visit(Handler handler, MessageContext msgContext)
           
 void WSDLGenStrategy.visit(Handler handler, MessageContext msgContext)
           
 

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

Methods in org.apache.axis.transport.http that throw AxisFault
 AxisServer AdminServlet.getEngine()
           
 AxisServer AxisServlet.getEngine()
           
static AxisServer AxisServlet.getEngine(javax.servlet.http.HttpServlet servlet)
          This is a uniform method of initializing AxisServer in a servlet context.
 void HTTPTransport.setupMessageContextImpl(MessageContext mc, Call call, AxisEngine engine)
          Set up any transport-specific derived properties in the message context.
 void HTTPSender.invoke(MessageContext msgContext)
           
 

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

Methods in org.apache.axis.transport.local that throw AxisFault
 void LocalSender.invoke(MessageContext clientContext)
           
 void LocalResponder.invoke(MessageContext msgContext)
           
 

Uses of AxisFault in org.apache.axis.utils
 

Methods in org.apache.axis.utils that throw AxisFault
static org.w3c.dom.Document Admin.listConfig(AxisEngine engine)
          Get an XML document representing this engine's configuration.
 



Copyright © 2001 Apache XML Project. All Rights Reserved.