This topic lists the main known restrictions that apply when using WSIF.
Threading
WSIF is not thread-safe.
External Standards
WSIF supports:
WSIF does not provide WS-I compliance, and it does not support the Java API for XML-based Remote Procedure Calls (JAX-RPC) Version 1.1 (or later).
Full schema parsing
WSIF does not support full schema parsing. For example, WSDL references in complex types in the schema are not handled, and attributes are not handled.
SOAP
WSIF does not support:
Note: This is not primarily a WSIF restriction. Although you can specify Document Encoded style in WSDL, it is not generally considered to be a valid option and is not supported by the Web Services Interoperability Organization (WS-I) (http://www.ws-i.org/).
SOAP provider interoperability
The current WSIF default SOAP provider (the IBM Web Service SOAP provider) does not fully interoperate with services that are running on the former (Apache SOAP) provider. This restriction is due to the fact that the IBM Web Service SOAP provider is designed to interoperate fully with a JAX-RPC compliant Web service, and Apache SOAP cannot provide such a service. For information on how to overcome this restriction, see WSIF SOAP provider: working with legacy applications
Type mappings
The current WSIF default SOAP provider (the IBM Web Service SOAP provider) conforms to the JAX-RPC type mapping rules that were finalized after the former (Apache SOAP) provider was created. The majority of types are mapped the same way by both providers. The exceptions are: xsd:date, xsd:dateTime, xsd:hexBinary and xsd:QName. Both client and service need to use the same mapping rules if any of these four types are used. Below is a table detailing the mapping rules for these four types:
XML Data Type | Apache SOAP Java Mapping | JAX-RPC Java Mapping |
---|---|---|
xsd:date | java.util.Date | Not supported |
xsd:dateTime | Not supported | java.util.Calendar |
xsd:hexBinary | Hexadecimal string | byte [ ] |
xsd:QName | org.apache.soap.util.xml.QName | javax.xml.namespace.QName |
Arrays and complex types
WSIF does not support general complex types, it only handles complex types that map to Java Beans. To use schema complex types, you must write your own custom serializers. The specific complex type and array support for WSIF outbound invocation of Web services are:
Object Serialization
WSIF does not support serialization of objects across different releases.
Asynchronous invocation
WSIF only supports asynchronous invocation for the JMS and the SOAP over JMS providers, which are not supported in WebSphere Application Server - Express.
Running outside WebSphere Application Server - Express
WSIF is not supported for use outside WebSphere Application Server - Express.