Uses of Class
org.apache.wsif.WSIFException

Packages that use WSIFException
org.apache.wsif   
org.apache.wsif.base   
org.apache.wsif.compiler   
org.apache.wsif.compiler.util   
org.apache.wsif.providers   
org.apache.wsif.providers.ejb   
org.apache.wsif.providers.java   
org.apache.wsif.providers.jca   
org.apache.wsif.providers.jca.toolplugin   
org.apache.wsif.providers.jms   
org.apache.wsif.providers.soap.apacheaxis   
org.apache.wsif.providers.soap.apachesoap   
org.apache.wsif.providers.soap.soaprmi   
org.apache.wsif.schema   
org.apache.wsif.spi   
org.apache.wsif.util   
org.apache.wsif.util.jms   
 

Uses of WSIFException in org.apache.wsif
 

Methods in org.apache.wsif that throw WSIFException
 WSIFPort WSIFService.getPort()
          Returns an appropriate WSIFPort for the portType that this factory supports.
 WSIFPort WSIFService.getPort(java.lang.String portName)
          Returns a WSIFPort for the indicated port.
 java.lang.Object WSIFService.getStub(java.lang.String portName, java.lang.Class iface)
          Get the dynamic proxy that will implement an interface for a port
 java.lang.Object WSIFService.getStub(java.lang.Class iface)
          Get the dynamic proxy that will implement an interface for a port This method will attempt to use the preferred port if set otherwise it will use the first available port.
 void WSIFService.mapType(javax.xml.namespace.QName xmlType, java.lang.Class javaType)
          Inform WSIF that a particular XML type (referred to in the WSDL) actually maps to a particular Java class.
 void WSIFService.mapPackage(java.lang.String namespace, java.lang.String packageName)
          Add an association between a namespace URI and and a Java package.
 void WSIFService.setPreferredPort(java.lang.String portName)
          Set the preferred port
 java.util.Iterator WSIFService.getAvailablePortNames()
          Get the names of the available ports
 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
 void WSIFOperation.fireAsyncResponse(java.lang.Object response)
          fireAsyncResponse is called when a response has been received for a previous executeRequestResponseAsync call.
 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 WSIFResponseHandler.executeAsyncResponse(WSIFMessage outMsg, WSIFMessage faultMsg)
           
 boolean WSIFInterceptor.interceptIncoming(WSIFRequest request, WSIFResponse response)
          This method is invoked to allow the interceptor to process the incoming request.
 boolean WSIFInterceptor.interceptOutgoing(WSIFRequest request, WSIFResponse response)
          This method is invoked to allow the interceptor to process the outgoing response.
 void WSIFCorrelationService.put(WSIFCorrelationId correlator, java.io.Serializable state, long timeout)
          Adds an entry to the correlation service.
 java.io.Serializable WSIFCorrelationService.get(WSIFCorrelationId id)
          Retrieves an entry from the correlation service.
 void WSIFCorrelationService.remove(WSIFCorrelationId id)
          Removes an entry form the correlation service.
abstract  WSIFService WSIFServiceFactory.getService(java.lang.String wsdlLoc, java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName)
          Create a WSIFService from WSDL document URL.
abstract  WSIFService WSIFServiceFactory.getService(java.lang.String wsdlLoc, java.lang.ClassLoader cl, java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName)
          Create a WSIF service instance from WSDL document URL using a ClassLoader to find local resources.
abstract  WSIFService WSIFServiceFactory.getService(javax.wsdl.Definition def)
          Returns a new WSIFService.
abstract  WSIFService WSIFServiceFactory.getService(javax.wsdl.Definition def, javax.wsdl.Service service)
          Returns a new WSIFService.
abstract  WSIFService WSIFServiceFactory.getService(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.PortType portType)
          Returns a new WSIFService.
abstract  WSIFService WSIFServiceFactory.getService(javax.wsdl.Definition def, java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName)
          Returns a new WSIFService.
 java.lang.Object WSIFMessage.getObjectPart(java.lang.String name)
           
 java.lang.Object WSIFMessage.getObjectPart(java.lang.String name, java.lang.Class sourceClass)
           
 void WSIFMessage.setObjectPart(java.lang.String name, java.lang.Object part)
           
 char WSIFMessage.getCharPart(java.lang.String name)
           
 byte WSIFMessage.getBytePart(java.lang.String name)
           
 short WSIFMessage.getShortPart(java.lang.String name)
           
 int WSIFMessage.getIntPart(java.lang.String name)
           
 long WSIFMessage.getLongPart(java.lang.String name)
           
 float WSIFMessage.getFloatPart(java.lang.String name)
           
 double WSIFMessage.getDoublePart(java.lang.String name)
           
 boolean WSIFMessage.getBooleanPart(java.lang.String name)
           
 WSIFOperation WSIFPort.createOperation(java.lang.String operationName)
          Create a new WSIFOperation.
 WSIFOperation WSIFPort.createOperation(java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
          Create a new WSIFOperation.
 void WSIFPort.close()
          Close this port; indicates that the user is done using it.
 

Uses of WSIFException in org.apache.wsif.base
 

Methods in org.apache.wsif.base that throw WSIFException
 void WSIFDefaultCorrelationService.put(WSIFCorrelationId correlator, java.io.Serializable state, long timeout)
          Adds an entry to the correlation service.
 java.io.Serializable WSIFDefaultCorrelationService.get(WSIFCorrelationId id)
          Retrieves an entry (a WSIFOperation) from the correlation service.
 void WSIFDefaultCorrelationService.remove(WSIFCorrelationId id)
          Removes an entry form the correlation service.
 void WSIFServiceImpl.setPreferredPort(java.lang.String portName)
          Set the preferred port
 java.util.Iterator WSIFServiceImpl.getAvailablePortNames()
          Get the names of the available ports
 WSIFPort WSIFServiceImpl.getPort()
           
 WSIFPort WSIFServiceImpl.getPort(java.lang.String portName)
          Return dynamic port instance selected by port name.
 void WSIFServiceImpl.mapType(javax.xml.namespace.QName xmlType, java.lang.Class javaType)
          Add an association between XML and Java type.
 void WSIFServiceImpl.mapPackage(java.lang.String namespace, java.lang.String packageName)
          Add an association between a namespace URI and and a Java package.
 java.lang.Object WSIFServiceImpl.getStub(java.lang.String portName, java.lang.Class iface)
          Get the dynamic proxy that will implement the interface iface for the port portName.
 java.lang.Object WSIFServiceImpl.getStub(java.lang.Class iface)
          Get the dynamic proxy that will implement the interface iface
 void WSIFDefaultMessage.setObjectPart(java.lang.String name, java.lang.Object part)
           
 java.lang.Object WSIFDefaultMessage.getObjectPart(java.lang.String name)
           
 java.lang.Object WSIFDefaultMessage.getObjectPart(java.lang.String name, java.lang.Class sourceClass)
           
 byte WSIFDefaultMessage.getBytePart(java.lang.String name)
           
 char WSIFDefaultMessage.getCharPart(java.lang.String name)
           
 int WSIFDefaultMessage.getIntPart(java.lang.String name)
           
 long WSIFDefaultMessage.getLongPart(java.lang.String name)
           
 short WSIFDefaultMessage.getShortPart(java.lang.String name)
           
 float WSIFDefaultMessage.getFloatPart(java.lang.String name)
           
 double WSIFDefaultMessage.getDoublePart(java.lang.String name)
           
 boolean WSIFDefaultMessage.getBooleanPart(java.lang.String name)
           
 WSIFService WSIFServiceFactoryImpl.getService(java.lang.String wsdlLoc, java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName)
          Create a WSIFService from WSDL document URL.
 WSIFService WSIFServiceFactoryImpl.getService(java.lang.String wsdlLoc, java.lang.ClassLoader cl, java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName)
          Create a WSIF service instance from WSDL document URL using a ClassLoader to find local resources.
 WSIFService WSIFServiceFactoryImpl.getService(javax.wsdl.Definition def)
          Returns a new WSIFService.
 WSIFService WSIFServiceFactoryImpl.getService(javax.wsdl.Definition def, javax.wsdl.Service service)
          Returns a new WSIFService.
 WSIFService WSIFServiceFactoryImpl.getService(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.PortType portType)
          Returns a new WSIFService.
 WSIFService WSIFServiceFactoryImpl.getService(javax.wsdl.Definition def, java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName)
          Returns a new WSIFService.
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.
 void WSIFDefaultOperation.fireAsyncResponse(java.lang.Object response)
          Default implemantation of fireAsyncResponse.
 boolean WSIFDefaultOperation.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Default implemantation of processAsyncResponse.
 void WSIFDefaultOperation.setInputJmsProperties(java.util.List list)
          Sets the input Jms properties for this operation
 void WSIFDefaultOperation.setOutputJmsProperties(java.util.List list)
          Sets the output Jms properties for this operation
 void WSIFDefaultOperation.addInputJmsPropertyValues(java.util.List list)
          This method adds new property values to existing HashMap.
static WSIFClientProxy WSIFClientProxy.newInstance(java.lang.Class iface, javax.wsdl.Definition def, java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName, WSIFDynamicTypeMap typeMap)
          Factory method to create a new dynamic proxy.
 java.lang.Object WSIFClientProxy.invoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args)
          Invoke a user method.
 void WSIFDefaultPort.close()
           
 

Uses of WSIFException in org.apache.wsif.compiler
 

Methods in org.apache.wsif.compiler that throw WSIFException
 void MessageCompiler.compileMessages(javax.wsdl.Definition def)
          This creates a Java class source file for each message in a WSDL Definition.
 

Uses of WSIFException in org.apache.wsif.compiler.util
 

Methods in org.apache.wsif.compiler.util that throw WSIFException
 java.io.OutputStream StreamFactory.getOutputStream(java.lang.String root, java.lang.String name, boolean overwrite)
           
static java.lang.String Utils.getQuotedString(java.io.Reader source, int indent)
           
static java.lang.String Utils.convertToObject(java.lang.String sourceClassName, java.lang.String expr)
           
static java.lang.String Utils.convertFromObject(java.lang.String expr, java.lang.String targetClassName)
           
 

Uses of WSIFException in org.apache.wsif.providers
 

Methods in org.apache.wsif.providers that throw WSIFException
static java.lang.Object ProviderUtils.stringArrayToCharacterArray(java.lang.Object obj)
          Convert an array of any dimensions containing only Strings of length 1, to an array of java.lang.Characters which has the same dimensions.
static java.lang.Object ProviderUtils.stringArrayToCharArray(java.lang.Object obj)
          Convert an array of any dimensions containing only Strings of length 1, to an array of chars which has the same dimensions.
static java.lang.Object ProviderUtils.characterArrayToStringArray(java.lang.Object obj)
          Convert an array of java.lang.Characters of any dimensions to an equivalent array of java.lang.Strings which has the same dimensions.
static java.lang.Object ProviderUtils.charArrayToStringArray(java.lang.Object obj)
          Convert an array of chars of any dimensions to an equivalent array of java.lang.Strings which has the same dimensions.
 

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

Methods in org.apache.wsif.providers.ejb that throw WSIFException
 WSIFPort WSIFDynamicProvider_EJB.createDynamicWSIFPort(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
          Check if WSDL port has EJB binding and if successful try to create EJB port instance.
 WSIFOperation_EJB WSIFPort_EJB.getDynamicWSIFOperation(java.lang.String name, java.lang.String inputName, java.lang.String outputName)
           
 javax.ejb.EJBHome WSIFPort_EJB.getEjbHome()
           
 javax.ejb.EJBObject WSIFPort_EJB.getEjbObject()
           
 WSIFOperation WSIFPort_EJB.createOperation(java.lang.String operationName)
           
 WSIFOperation WSIFPort_EJB.createOperation(java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
           
 WSIFOperation_EJB WSIFOperation_EJB.copy()
          Create a new copy of this object.
 boolean WSIFOperation_EJB.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
 void WSIFOperation_EJB.executeInputOnlyOperation(WSIFMessage input)
           
 

Constructors in org.apache.wsif.providers.ejb that throw WSIFException
WSIFOperation_EJB(javax.wsdl.Port portModel, javax.wsdl.BindingOperation bindingOperationModel, WSIFPort_EJB port)
           
 

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

Methods in org.apache.wsif.providers.java that throw WSIFException
 WSIFOperation WSIFPort_Java.createOperation(java.lang.String operationName)
           
 WSIFOperation WSIFPort_Java.createOperation(java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
           
 java.lang.Object WSIFPort_Java.getObjectReference()
           
 WSIFOperation_Java WSIFOperation_Java.copy()
          Create a new copy of this object.
 boolean WSIFOperation_Java.executeRequestResponseOperation(WSIFMessage input, WSIFMessage output, WSIFMessage fault)
           
 void WSIFOperation_Java.executeInputOnlyOperation(WSIFMessage input)
           
 WSIFPort WSIFDynamicProvider_Java.createDynamicWSIFPort(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
          Check if WSDL port has Java binding and if successful try to create Java port instance.
 

Constructors in org.apache.wsif.providers.java that throw WSIFException
WSIFPort_Java(javax.wsdl.Definition def, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
           
WSIFOperation_Java(javax.wsdl.Port portModel, javax.wsdl.BindingOperation bindingOperationModel, WSIFPort_Java port, java.util.Map typeMaps)
           
 

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

Methods in org.apache.wsif.providers.jca that throw WSIFException
 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.
 void WSIFOperation_JCA.fireAsyncResponse(java.lang.Object response)
          Method not supported.
 boolean WSIFOperation_JCA.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Method not supported.
 WSIFOperation WSIFPort_JCA.createOperation(java.lang.String aOperationName, java.lang.String aInputName, java.lang.String aOutputName)
          This method creates WSIFOperation_JCA using the configured, Resource Adapter specific factory (i.e.
 WSIFOperation WSIFPort_JCA.createOperation(java.lang.String aOperationName)
          Creates a WSIFOperation_JCA using the configured, Resource Adapter specific factory (i.e.
 WSIFOperation WSIFProviderJCAExtensions.createOperation(javax.wsdl.Definition definition, javax.wsdl.Service aService, javax.wsdl.Port aPort, java.lang.String operationName, java.lang.String inputName, java.lang.String outputName, WSIFDynamicTypeMap typeMap, WSIFPort_JCA jcaPort, javax.resource.cci.Connection connection)
          The provider for a resource adapter creates a WSIFOperation based on the specified WSDL operation.
 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 WSIFException in org.apache.wsif.providers.jca.toolplugin
 

Methods in org.apache.wsif.providers.jca.toolplugin that throw WSIFException
 PortTypeArray Import.getPortTypes(java.lang.String queryString)
          This is the proxy method to invoke the getPortTypes Operation of the Import Service.
 ImportDefinition Import.getDefinition(PortTypeSelection portTypeSelection)
          This is the proxy method to invoke the getDefinition Operation of the Import Service.
 byte[] Import.getRawEISMetaData(java.lang.String queryString)
          This is the proxy method to invoke the getRawEISMetaData Operation of the Import Service
 java.util.Hashtable FormatHandlerGenerator.generate(java.lang.String generationPackage, java.lang.String beanClass, javax.wsdl.Definition aDefinition, javax.wsdl.Binding aBinding, java.lang.String anEncoding, java.lang.String aStyle, javax.xml.namespace.QName xsdQname, int elementType, java.lang.Object generationContext)
          Generates a Custom Format Handler for a particular XSD Type or Element.
 

Constructors in org.apache.wsif.providers.jca.toolplugin that throw WSIFException
Import(javax.wsdl.Definition aServiceDefinition, java.lang.String aServiceName)
          Constructor for Import.
 

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

Methods in org.apache.wsif.providers.jms that throw WSIFException
 WSIFPort WSIFDynamicProvider_Jms.createDynamicWSIFPort(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
           
 WSIFOperation_Jms WSIFOperation_Jms.copy()
          Create a new copy of this object.
 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)
 void WSIFOperation_Jms.fireAsyncResponse(java.lang.Object response)
          fireAsyncResponse is called when a response has been received for a previous executeRequestResponseAsync call.
static void WSIFOperation_Jms.setJMSMessageOutputHeaderProperties(javax.jms.Message targetMsg, WSIFMessage srcMsg, JMSFormatter formatter)
          Sets JMS properties on a JMS message
 void JMSMessage.write(javax.jms.Message message)
           
 void JMSMessage.read(javax.jms.Message message)
           
 WSIFOperation WSIFPort_Jms.createOperation(java.lang.String operationName)
           
 WSIFOperation WSIFPort_Jms.createOperation(java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
           
 WSIFOperation_Jms WSIFPort_Jms.getDynamicWSIFOperation(java.lang.String name, java.lang.String inputName, java.lang.String outputName)
          get/set WSIF operation
 JMSAddress WSIFPort_Jms.getObjectReference()
           
 WSIFJMSDestination WSIFPort_Jms.getJmsDestination()
          Returns the jmsDestination for this WSIFPort.
 void WSIFPort_Jms.close()
          Closes the port.
 void JMSFormatter.formatRequest(WSIFRequest req, javax.jms.Message out)
           
 WSIFRequest JMSFormatter.unformatRequest(javax.jms.Message in)
           
 void JMSFormatter.formatResponse(WSIFResponse resp, javax.jms.Message out)
           
 WSIFResponse JMSFormatter.unformatResponse(javax.jms.Message out)
           
 

Constructors in org.apache.wsif.providers.jms that throw WSIFException
WSIFOperation_Jms(javax.wsdl.Port basePort, javax.wsdl.BindingOperation bindingOperation, WSIFPort_Jms jmsPort)
          ctor
WSIFPort_Jms(javax.wsdl.Definition def, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
          ctor
 

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

Methods in org.apache.wsif.providers.soap.apacheaxis that throw WSIFException
 WSIFOperation_ApacheAxis WSIFOperation_ApacheAxis.copy()
          Create a new copy of this object.
 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.
 void WSIFOperation_ApacheAxis.fireAsyncResponse(java.lang.Object response)
          fireAsyncResponse is called by an AsyncListener when a response has been received for a previous executeRequestResponseAsync call.
 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)
           
 WSIFPort WSIFDynamicProvider_ApacheAxis.createDynamicWSIFPort(javax.wsdl.Definition definition, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap wsifdynamictypemap)
           
 WSIFOperation_ApacheAxis WSIFPort_ApacheAxis.getDynamicWSIFOperation(java.lang.String name, java.lang.String inputName, java.lang.String outputName)
           
 org.apache.axis.client.Call WSIFPort_ApacheAxis.getCall()
           
 WSIFOperation WSIFPort_ApacheAxis.createOperation(java.lang.String operationName)
           
 WSIFOperation WSIFPort_ApacheAxis.createOperation(java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
           
 void WSIFPort_ApacheAxis.close()
          Closes the port.
 void WSIFJmsTransport.close()
           
 

Constructors in org.apache.wsif.providers.soap.apacheaxis that throw WSIFException
WSIFOperation_ApacheAxis(WSIFPort_ApacheAxis wsifport_apacheaxis, javax.wsdl.Operation operation1, WSIFDynamicTypeMap wsifdynamictypemap)
           
WSIFPort_ApacheAxis(javax.wsdl.Definition definition1, javax.wsdl.Service service, javax.wsdl.Port port1, WSIFDynamicTypeMap wsifdynamictypemap)
           
 

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

Methods in org.apache.wsif.providers.soap.apachesoap that throw WSIFException
 WSIFOperation WSIFPort_ApacheSOAP.createOperation(java.lang.String operationName)
           
 WSIFOperation WSIFPort_ApacheSOAP.createOperation(java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
           
 WSIFOperation_ApacheSOAP WSIFPort_ApacheSOAP.getDynamicWSIFOperation(java.lang.String name, java.lang.String inputName, java.lang.String outputName)
           
 void WSIFPort_ApacheSOAP.close()
          Closes the port.
 WSIFPort WSIFDynamicProvider_ApacheSOAP.createDynamicWSIFPort(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
          Check if WSDL port has SOAP binding and if successful try to create ApacheSOAP port instance.
 void SOAPJMSConnection.setJmsProperty(java.lang.String name, java.lang.Object value)
           
 java.util.HashMap SOAPJMSConnection.getJmsProperties()
           
 WSIFOperation_ApacheSOAP WSIFOperation_ApacheSOAP.copy()
          Create a new copy of this object.
 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.
 void WSIFOperation_ApacheSOAP.fireAsyncResponse(java.lang.Object response)
          fireAsyncResponse is called by an AsyncListener when a response has been received for a previous executeRequestResponseAsync call.
 boolean WSIFOperation_ApacheSOAP.processAsyncResponse(java.lang.Object response, WSIFMessage output, WSIFMessage fault)
          Processes the response to an asynchronous request.
 

Constructors in org.apache.wsif.providers.soap.apachesoap that throw WSIFException
WSIFPort_ApacheSOAP(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap, java.lang.String partSerName)
          Create dynamic port instance from WDL model defintion and port.
SOAPJMSConnection(JMSAddress ja, java.lang.String portName)
           
WSIFOperation_ApacheSOAP(WSIFPort_ApacheSOAP pi, javax.wsdl.Operation op, WSIFDynamicTypeMap typeMap)
          Create Apache SOAP operation instance that encapsultes all necessary information required to create and execute Apache SOAP Call.
 

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

Methods in org.apache.wsif.providers.soap.soaprmi that throw WSIFException
 WSIFPort WSIFDynamicProvider_SoapRMI.createDynamicWSIFPort(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
          Check if WSDL port has SOAP binding and if successful try to create SOAP port instance.
 WSIFOperation WSIFPort_SoapRMI.createOperation(java.lang.String operationName)
           
 WSIFOperation WSIFPort_SoapRMI.createOperation(java.lang.String operationName, java.lang.String inputName, java.lang.String outputName)
           
 WSIFOperation_SoapRMI WSIFPort_SoapRMI.getDynamicWSIFOperation(java.lang.String name, java.lang.String inputName, java.lang.String outputName)
           
 WSIFOperation_SoapRMI WSIFOperation_SoapRMI.copy()
          Create a new copy of this object.
 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.
 

Constructors in org.apache.wsif.providers.soap.soaprmi that throw WSIFException
WSIFPort_SoapRMI(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
          Create dynamic port instance from WDL model defintion and port.
WSIFOperation_SoapRMI(WSIFPort_SoapRMI pi, javax.wsdl.Operation op, WSIFDynamicTypeMap typeMap)
          Create Apache SOAP operation instance that encapsultes all necessary information required to create and execute Apache SOAP Call.
 

Uses of WSIFException in org.apache.wsif.schema
 

Methods in org.apache.wsif.schema that throw WSIFException
static void Parser.getTypeMappings(javax.wsdl.Definition def, java.util.Map table)
          Given a Definition object, populate a Map with all the types defined in the schemas in the definition and their corresponding Java class names.
static void Parser.getTypeMappings(javax.wsdl.Definition def, java.util.Map table, java.lang.ClassLoader loader)
          Given a Definition object, populate a Map with all the types defined in the schemas in the definition and their corresponding Java class names.
static void Parser.getTypeMappings(javax.wsdl.Definition def, java.util.Map table, java.lang.ClassLoader loader, boolean includeStandardMappings)
          Given a Definition object, populate a Map with all the types defined in the schemas in the definition and their corresponding Java class names.
static void Parser.getTypeMappings(javax.wsdl.Definition def, java.util.Map table, javax.wsdl.xml.WSDLLocator loc)
          Given a Definition object, populate a Map with all the types defined in the schemas in the definition and their corresponding Java class names.
static void Parser.getTypeMappings(javax.wsdl.Definition def, java.util.Map table, boolean includeStandardMappings)
          Given a Definition object, populate a Map with all the types defined in the schemas in the definition and their corresponding Java class names.
static void Parser.getTypeMappings(javax.wsdl.Definition def, java.util.Map table, boolean includeStandardMappings, javax.wsdl.xml.WSDLLocator loc)
          Given a Definition object, populate a Map with all the types defined in the schemas in the definition and their corresponding Java class names.
static void Parser.getAllSchemaTypes(javax.wsdl.Definition def, java.util.List schemaTypes, javax.wsdl.xml.WSDLLocator loc)
          Populate a List with all the top level SchemaType objects (complexTypes, simpleTypes and elements) generated by parsing the schemas associated with a Definition object
 

Uses of WSIFException in org.apache.wsif.spi
 

Methods in org.apache.wsif.spi that throw WSIFException
 WSIFPort WSIFProvider.createDynamicWSIFPort(javax.wsdl.Definition def, javax.wsdl.Service service, javax.wsdl.Port port, WSIFDynamicTypeMap typeMap)
          For the given WSDL definition, service and port try to provide dynamic port, or return null if this provider can not do it.
 

Uses of WSIFException in org.apache.wsif.util
 

Methods in org.apache.wsif.util that throw WSIFException
static WSIFService WSIFUtils.lookupFactoryFromJNDI(java.lang.String serviceNS, java.lang.String serviceName, java.lang.String portTypeNS, java.lang.String portTypeName)
          Given the service and portType identification, return a factory that can produce WSIFPorts for that service/portType combination.
static javax.wsdl.Service WSIFUtils.selectService(javax.wsdl.Definition def, java.lang.String serviceNS, java.lang.String serviceName)
           
static javax.wsdl.PortType WSIFUtils.selectPortType(javax.wsdl.Definition def, java.lang.String portTypeNS, java.lang.String portTypeName)
           
static java.lang.Object WSIFUtils.getNamedItem(java.util.Map items, javax.xml.namespace.QName qname, java.lang.String itemType)
           
static javax.wsdl.Definition WSIFUtils.getDefinitionFromLocation(java.lang.String contextURL, java.lang.String location)
           
static javax.wsdl.Definition WSIFUtils.getDefinitionFromContent(java.lang.String contextURL, java.lang.String content)
           
static javax.wsdl.BindingOperation WSIFUtils.getBindingOperation(javax.wsdl.Binding binding, javax.wsdl.Operation portTypeOp)
          Get a binding operation for a portType operation.
static javax.wsdl.BindingOperation WSIFUtils.getBindingOperation(javax.wsdl.Binding binding, java.lang.String opName, java.lang.String inName, java.lang.String outName)
          Get a binding operation for a portType operation.
 

Uses of WSIFException in org.apache.wsif.util.jms
 

Methods in org.apache.wsif.util.jms that throw WSIFException
 void JMS2HTTPBridge.listen()
           
 void WSIFJMSDestination.close()
          Close all objects.
 void WSIFJMSDestination.finalize()
          close the destination at finalize.
 java.lang.String WSIFJMSDestination.send(java.lang.String data)
          Send a message to the write queue
 java.lang.String WSIFJMSDestination.send(java.lang.String data, java.lang.String id)
          Send a message to the write queue
 java.lang.String WSIFJMSDestination.send(java.io.Serializable data)
          Send a message to the write queue
 java.lang.String WSIFJMSDestination.send(java.io.Serializable data, java.lang.String id)
          Send a message to the write queue
 java.lang.String WSIFJMSDestination.send(javax.jms.Message msg, java.lang.String id, boolean setReplyTo)
          Sends a message to the write queue.
 java.lang.String WSIFJMSDestination.receive()
          Blocking receive for the wsif.syncrequest.timeout
 java.lang.String WSIFJMSDestination.receiveString(java.lang.String id)
          Blocking receive for the wsif.syncrequest.timeout
 java.lang.String WSIFJMSDestination.receiveString(java.lang.String id, long timeout)
          Blocking receive waits for the specified timeout
 javax.jms.Message WSIFJMSDestination.receive(java.lang.String id)
          Blocking receive waits for a message for the wsif.syncrequest.timeout
 javax.jms.Message WSIFJMSDestination.receive(java.lang.String id, long timeout)
          Blocking receive waits for a message for the specified timeout
 void WSIFJMSDestination.setReplyToQueue()
          Set the replyTo queue to a temporary queue.
 void WSIFJMSDestination.setReplyToQueue(java.lang.String replyTo)
          Set the replyTo queue.
 void WSIFJMSDestination.setAsyncMode(boolean b)
          Sets if this destination is to be used for asynchronous requests.
 void WSIFJMSDestination.setProperty(java.lang.String name, java.lang.Object value)
          Sets a JMS property to a value.
 java.lang.Object WSIFJMSDestination.getProperty(java.lang.String name)
          Gets a JMS property from the previous message that was received.
 java.util.HashMap WSIFJMSDestination.getProperties()
          Gets all the JMS properties from the previous message that was received.
static javax.jms.Message WSIFJMSDestination.createMessage(javax.jms.Session session, int msgType)
           
 javax.jms.Message WSIFJMSDestination.createMessage(int msgType)
           
 boolean WSIFJMSProperties.set(javax.jms.MessageProducer producer, javax.jms.Message message)
          Set all the properties that have been loaded into this HashMap on a QueueSender.
 void WSIFJMSProperties.getPropertiesFromMessage(javax.jms.Message message)
          Get all the properties from a Message and load them into this HashMap.
static WSIFJMSFinder WSIFJMSFinder.newFinder(JMSAddress ja, java.lang.String portName)
           
 void JMS2HTTPBridgeDestination.listen(WSIFJMSListener listener)
          Create a listener thread to listen for messages.
 void JMS2HTTPBridgeDestination.listen(WSIFJMSListener listener, javax.jms.Queue queue)
          Create a listener thread to listen for messages.
 void JMS2HTTPBridgeDestination.setReplyToQueue()
           
 void JMS2HTTPBridgeDestination.setReplyToQueue(java.lang.String replyTo)
           
 void JMS2HTTPBridgeDestination.setReplyToQueue(javax.jms.Queue replyTo)
          Set the replyTo queue.
 

Constructors in org.apache.wsif.util.jms that throw WSIFException
WSIFJMSDestination(WSIFJMSFinder finder)
          Public constructor.
WSIFJMSDestination(WSIFJMSFinder finder, long timeout)
          Public constructor.
WSIFJMSDestination(WSIFJMSFinder finder, java.lang.String altDestName, long timeout)
          Public constructor.
WSIFJMSProperties(java.lang.String direction)
          Constructor for WSIFJMSProperties
WSIFJMSFinderForJndi(java.lang.String jmsVendorURL, java.lang.String initialContextFactory, java.lang.String jndiProviderURL, java.lang.String style, java.lang.String jndiConnectionFactory, java.lang.String jndiDestinationName, java.lang.String portName)
          Package private constructor.
JMS2HTTPBridgeDestination(WSIFJMSFinder finder, java.lang.String altDestName, long timeout, java.lang.String startType, boolean verbose)
          Public constructor.
 



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