Change the default WSIF SOAP provider
The WSIF default SOAP provider (the IBM Web Service SOAP provider) is designed to interoperate fully with a JAX-RPC compliant Web service, and therefore the default provider does not fully interoperate with services that are running on the former (Apache SOAP) provider. To get the existing services working again, we can either modify the Web services to use the current IBM Web Service SOAP provider, or we can change the WSIF default provider back to Apache SOAP as described in this topic.
WSIF uses a properties file named wsif.properties to choose what SOAP provider to use. The SOAP provider is a node-wide setting, so all servers on the node must be restarted for any changes to take effect. The wsif.properties file is shipped in the com.ibm.ws.runtime.jar file that is located in...
APP_ROOT/plugins
(where APP_ROOT is the root directory for the installation of IBM WAS), and the "as shipped" properties file is accessed in this location by being put on the class path. However when you make changes to the file, you do not replace the original copy in the com.ibm.ws.runtime.jar file.
Instead, you save the modified version in the APP_ROOT/lib/properties directory.
To change the WSIF default SOAP provider back to Apache SOAP...
- Extract the wsif.properties file from the com.ibm.ws.runtime.jar file that is located in the APP_ROOT/plugins directory (where APP_ROOT is the root directory for the installation of IBM WAS).
- Open the wsif.properties file in a text editor.
- Remove the leading "#" character from the following lines:
# wsif.provider.default.org.apache.wsif.providers.soap.ApacheSOAP.WSIFDynamicProvider_ApacheSOAP=1 # wsif.provider.uri.1.org.apache.wsif.providers.soap.ApacheSOAP.WSIFDynamicProvider_ApacheSOAP=\ # http://schemas.xmlsoap.org/wsdl/soap/ #After the update, the preceding lines should look like this:
wsif.provider.default.org.apache.wsif.providers.soap.ApacheSOAP.WSIFDynamicProvider_ApacheSOAP=1 wsif.provider.uri.1.org.apache.wsif.providers.soap.ApacheSOAP.WSIFDynamicProvider_ApacheSOAP=\ http://schemas.xmlsoap.org/wsdl/soap/ #- Save the updated wsif.properties file in the APP_ROOT/lib/properties directory.
- Stop then restart all appservers on the node.
Example
Related tasks
Modify Web services to use the IBM Web Service SOAP provider
WSIF SOAP provider: working with existing applications
Related
wsif.properties file - Initial contents