Uses of Interface
org.apache.wsif.WSIFMessage

Packages that use WSIFMessage
org.apache.wsif   
org.apache.wsif.base   
org.apache.wsif.providers.ejb   
org.apache.wsif.providers.java   
org.apache.wsif.providers.jca   
org.apache.wsif.providers.jms   
org.apache.wsif.providers.soap.apacheaxis   
org.apache.wsif.providers.soap.apachesoap   
org.apache.wsif.providers.soap.soaprmi   
 

Uses of WSIFMessage in org.apache.wsif
 

Methods in org.apache.wsif that return WSIFMessage
 WSIFMessage WSIFOperation.getContext()
          Gets the context information for this binding.
 WSIFMessage WSIFOperation.createInputMessage()
          Create an input message that will be sent via this port.
 WSIFMessage WSIFOperation.createInputMessage(java.lang.String name)
          Create an input message that will be sent via this port.
 WSIFMessage WSIFOperation.createOutputMessage()
          Create an output message that will be received into via this port.
 WSIFMessage WSIFOperation.createOutputMessage(java.lang.String name)
          Create an output message that will be received into via this port.
 WSIFMessage WSIFOperation.createFaultMessage()
          Create a fault message that may be received into via this port.
 WSIFMessage WSIFOperation.createFaultMessage(java.lang.String name)
          Create a fault message that may be received into via this port.
 WSIFMessage WSIFMessageFactory.createMessage()
           
 WSIFMessage WSIFMessageFactory.createMessage(java.lang.String ns, java.lang.String n)
           
 WSIFMessage WSIFRequest.getIncomingMessage()
          Get the incoming message.
 WSIFMessage WSIFRequest.getContextMessage()
          Get the context message.
 WSIFMessage WSIFResponse.getOutgoingMessage()
          Get the outgoing message.
 WSIFMessage WSIFResponse.getFaultMessage()
          Get the fault message.
 WSIFMessage WSIFResponse.getContextMessage()
          Get the context message.
 

Methods in org.apache.wsif with parameters of type WSIFMessage
 boolean WSIFOperation.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
          Execute a request-response operation.
 WSIFCorrelationId WSIFOperation.executeRequestResponseAsync(WSIFMessage input)
          Execute an asynchronous request
 WSIFCorrelationId WSIFOperation.executeRequestResponseAsync(WSIFMessage input, WSIFResponseHandler handler)
          Execute an asynchronous request
 boolean WSIFOperation.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Processes the response to an asynchronous request.
 void WSIFOperation.executeInputOnlyOperation(WSIFMessage input)
          Execute an input-only operation.
 void WSIFOperation.setContext(WSIFMessage context)
          Allows the application programmer or stub to pass context information to the binding.
 void WSIFResponseHandler.executeAsyncResponse(WSIFMessage outMsg, WSIFMessage faultMsg)
           
 void WSIFRequest.setIncomingMessage(WSIFMessage incomingMessage)
          Set the incoming message.
 void WSIFRequest.setContextMessage(WSIFMessage contextMessage)
          Set the context message.
 void WSIFResponse.setOutgoingMessage(WSIFMessage outgoingMessage)
          Set the outgoing message.
 void WSIFResponse.setFaultMessage(WSIFMessage faultMessage)
          Set the fault message.
 void WSIFResponse.setContextMessage(WSIFMessage contextMessage)
          Set the context message.
 

Uses of WSIFMessage in org.apache.wsif.base
 

Classes in org.apache.wsif.base that implement WSIFMessage
 class WSIFDefaultMessage
          A DefaultWSIFMessage is a default implementation of WSIFMessage holding a collection of WSIFParts corresponding to the parts of a message as defined in WSDL.
 

Methods in org.apache.wsif.base that return WSIFMessage
 WSIFMessage WSIFDefaultMessageFactory.createMessage()
           
 WSIFMessage WSIFDefaultMessageFactory.createMessage(java.lang.String ns, java.lang.String n)
           
 WSIFMessage WSIFDefaultOperation.createInputMessage()
           
 WSIFMessage WSIFDefaultOperation.createInputMessage(java.lang.String name)
           
 WSIFMessage WSIFDefaultOperation.createOutputMessage()
           
 WSIFMessage WSIFDefaultOperation.createOutputMessage(java.lang.String name)
           
 WSIFMessage WSIFDefaultOperation.createFaultMessage()
           
 WSIFMessage WSIFDefaultOperation.createFaultMessage(java.lang.String name)
           
 WSIFMessage WSIFDefaultOperation.getContext()
          Gets the context information for this binding.
 

Methods in org.apache.wsif.base with parameters of type WSIFMessage
abstract  boolean WSIFDefaultOperation.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
abstract  void WSIFDefaultOperation.executeInputOnlyOperation(WSIFMessage input)
           
 WSIFCorrelationId WSIFDefaultOperation.executeRequestResponseAsync(WSIFMessage input, WSIFResponseHandler handler)
          Default implementation of executeRequestResponseAsync.
 WSIFCorrelationId WSIFDefaultOperation.executeRequestResponseAsync(WSIFMessage input)
          Default implementation of executeRequestResponseAsync.
 boolean WSIFDefaultOperation.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Default implemantation of processAsyncResponse.
 void WSIFDefaultOperation.setContext(WSIFMessage context)
          Allows the application programmer or stub to pass context information to the binding.
 

Uses of WSIFMessage in org.apache.wsif.providers.ejb
 

Methods in org.apache.wsif.providers.ejb with parameters of type WSIFMessage
 boolean WSIFOperation_EJB.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
 void WSIFOperation_EJB.executeInputOnlyOperation(WSIFMessage input)
           
 

Uses of WSIFMessage in org.apache.wsif.providers.java
 

Methods in org.apache.wsif.providers.java with parameters of type WSIFMessage
 boolean WSIFOperation_Java.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
 void WSIFOperation_Java.executeInputOnlyOperation(WSIFMessage input)
           
 

Uses of WSIFMessage in org.apache.wsif.providers.jca
 

Classes in org.apache.wsif.providers.jca that implement WSIFMessage
 class WSIFMessage_JCA
          This class is the top level superclass for all JCA WSIF messages.
 class WSIFMessage_JCAStreamable
          The class WSIFMessage_JCAStreamable is a specialized version of the WSIFMessage_JCA to support Resource Adapters using javax.resource.cci.Streamable.
 

Methods in org.apache.wsif.providers.jca that return WSIFMessage
 WSIFMessage WSIFOperation_JCA.createFaultMessage()
          This method creates the fault message.
 WSIFMessage WSIFOperation_JCA.createFaultMessage(java.lang.String name)
          This method creates the fault message with specific name.
 WSIFMessage WSIFOperation_JCA.createInputMessage()
          This method creates the input message.
 WSIFMessage WSIFOperation_JCA.createInputMessage(java.lang.String name)
          This method creates the input message with specific name.
 WSIFMessage WSIFOperation_JCA.createOutputMessage()
          This method creates the output message.
 WSIFMessage WSIFOperation_JCA.createOutputMessage(java.lang.String name)
          This method creates the output message with specific name.
 WSIFMessage WSIFOperation_JCA.getContext()
          Method not supported.
 WSIFMessage WSIFProviderJCAExtensions.createInputMessage(javax.wsdl.Definition definition, javax.wsdl.Binding binding, java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
          This method creates input message.
 WSIFMessage WSIFProviderJCAExtensions.createOutputMessage(javax.wsdl.Definition definition, javax.wsdl.Binding binding, java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
          This method creates output message.
 WSIFMessage WSIFProviderJCAExtensions.createFaultMessage(javax.wsdl.Definition definition, javax.wsdl.Binding binding, java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
          This method creates a FaultMessage.
 

Methods in org.apache.wsif.providers.jca with parameters of type WSIFMessage
 boolean WSIFOperation_JCA.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
          Invokes the request/response operation.
 void WSIFOperation_JCA.executeInputOnlyOperation(WSIFMessage input)
          Invokes input only operation.
 WSIFCorrelationId WSIFOperation_JCA.executeRequestResponseAsync(WSIFMessage input, WSIFResponseHandler handler)
          Method not supported.
 WSIFCorrelationId WSIFOperation_JCA.executeRequestResponseAsync(WSIFMessage input)
          Method not supported.
 boolean WSIFOperation_JCA.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Method not supported.
 void WSIFOperation_JCA.setContext(WSIFMessage context)
          Method not supported.
 void WSIFProviderJCAExtensions.updateInteractionSpec(WSIFMessage input, javax.wsdl.Binding aBinding, java.lang.String aOperationName, java.lang.String aInputName, java.lang.String aOutputName, javax.resource.cci.InteractionSpec aInteractionSpec)
          Updates the interactionSpec from input message values.
 void WSIFProviderJCAExtensions.updateOutputMessage(WSIFMessage output, javax.wsdl.Binding aBinding, java.lang.String aOperationName, java.lang.String aInputName, java.lang.String aOutputName, javax.resource.cci.InteractionSpec aInteractionSpec)
          Updates the output message using output InteractionSpec values.
 javax.resource.cci.Connection WSIFProviderJCAExtensions.createConnection(WSIFMessage input, javax.wsdl.Definition definition, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap, javax.wsdl.Binding aBinding, java.lang.String aOperationName, java.lang.String aInputName, java.lang.String aOutputName)
          Creates a javax.resource.cci.Connection.
 

Uses of WSIFMessage in org.apache.wsif.providers.jms
 

Classes in org.apache.wsif.providers.jms that implement WSIFMessage
 class JMSMessage
          JMSMessage
 

Methods in org.apache.wsif.providers.jms with parameters of type WSIFMessage
 boolean WSIFOperation_Jms.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
          executeRequestResponseOperation(WSIFMessage, WSIFMessage, WSIFMessage) synchronous execution is NOT supported for JMS
 void WSIFOperation_Jms.executeInputOnlyOperation(WSIFMessage input)
          executeInputOnlyOperation(WSIFMessage) WSDL transmission primitive Notification (fire&forget)
 WSIFCorrelationId WSIFOperation_Jms.executeRequestResponseAsync(WSIFMessage input)
          executeRequestResponseAsync(WSIFMessage) This is the simple async form where the client is expected to handle the correlating of the response.
 WSIFCorrelationId WSIFOperation_Jms.executeRequestResponseAsync(WSIFMessage input, WSIFResponseHandler handler)
          executeRequestResponseAsync(WSIFMessage, WSIFResponseHandler)
 boolean WSIFOperation_Jms.processAsyncResponse(java.lang.Object responseObject, WSIFMessage output, WSIFMessage fault)
          workflow specific processAsyncResponse(Object, WSIFMessage, WSIFMessage)
static void WSIFOperation_Jms.setJMSMessageOutputHeaderProperties(javax.jms.Message targetMsg, WSIFMessage srcMsg, JMSFormatter formatter)
          Sets JMS properties on a JMS message
 

Uses of WSIFMessage in org.apache.wsif.providers.soap.apacheaxis
 

Methods in org.apache.wsif.providers.soap.apacheaxis with parameters of type WSIFMessage
 void WSIFOperation_ApacheAxis.executeInputOnlyOperation(WSIFMessage wsifmessage)
           
 WSIFCorrelationId WSIFOperation_ApacheAxis.executeRequestResponseAsync(WSIFMessage input)
          Performs a request response operation asynchronously.
 WSIFCorrelationId WSIFOperation_ApacheAxis.executeRequestResponseAsync(WSIFMessage input, WSIFResponseHandler handler)
          Performs a request response operation asynchronously.
 boolean WSIFOperation_ApacheAxis.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Processes the response to an asynchronous request.
 boolean WSIFOperation_ApacheAxis.executeRequestResponseOperation(WSIFMessage wsifmessage, WSIFMessage wsifmessage1, WSIFMessage wsifmessage2)
           
 boolean WSIFOperation_ApacheAxis.invokeRequestResponseOperation(WSIFMessage wsifmessage, WSIFMessage wsifmessage1, WSIFMessage wsifmessage2)
           
 

Uses of WSIFMessage in org.apache.wsif.providers.soap.apachesoap
 

Methods in org.apache.wsif.providers.soap.apachesoap with parameters of type WSIFMessage
 boolean WSIFOperation_ApacheSOAP.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
 void WSIFOperation_ApacheSOAP.executeInputOnlyOperation(WSIFMessage input)
           
 boolean WSIFOperation_ApacheSOAP.invokeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
          Invoke RPC operation using ApacheSOAP
 boolean WSIFOperation_ApacheSOAP.invokeRequestResponseOperationDocument(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
 WSIFCorrelationId WSIFOperation_ApacheSOAP.executeRequestResponseAsync(WSIFMessage input)
          Performs a request response operation asynchronously.
 WSIFCorrelationId WSIFOperation_ApacheSOAP.executeRequestResponseAsync(WSIFMessage input, WSIFResponseHandler handler)
          Performs a request response operation asynchronously.
 boolean WSIFOperation_ApacheSOAP.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Processes the response to an asynchronous request.
 

Uses of WSIFMessage in org.apache.wsif.providers.soap.soaprmi
 

Methods in org.apache.wsif.providers.soap.soaprmi with parameters of type WSIFMessage
 boolean WSIFOperation_SoapRMI.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
 void WSIFOperation_SoapRMI.executeInputOnlyOperation(WSIFMessage input)
           
 boolean WSIFOperation_SoapRMI.invokeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
          Invoke RPC operation using ApacheSOAP
 void WSIFOperation_SoapRMI.invokeInputOnlyOperation(WSIFMessage input)
          Invoke only operation are not yet supported.
 



Copyright © 2002, 2002 Apache XML Project. All Rights Reserved.