Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Enabling mutual SSL in the blocking mode

If you use When using the Call mediator in the blocking mode (blocking=true), you must enable mutual SSL.Since the Call mediator is run based on the configuration of the axis2_blocking_client.xml file, its default HTTPs transport sender is org.apache.axis2.transport.http.CommonsHTTPTransportSender. Therefore, the Call mediator does not have access to the required key store to handle mutual SSL. To enable the Call mediator to handle mutual SSL , by adding the following JVM settings should be added to the <ESB_HOME>/bin/wso2server.sh file.:

Code Block
-Djavax.net.ssl.keyStore="$CARBON_HOME/repository/resources/security/wso2carbon.jks" \
-Djavax.net.ssl.keyStorePassword="wso2carbon" \
-Djavax.net.ssl.keyPassword="wso2carbon" \

...