You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by Alexandre Jaquet <al...@gmail.com> on 2009/10/19 08:14:17 UTC

javax.xml.ws.soap.SOAPFaultException: Could not send Message.

Hi,

Without using SSL my application is working fine, but now when I'm been
trying to setup SSL with the following configuration nothing work

    <http:conduit name="*Z_WS_ACC_DOCUMENT_POSTPort.http-conduit">
        <http:authorization>

<sec:UserName>${webservice.sap.Z_WS_ACC_DOCUMENT_POST.username}</sec:UserName>

<sec:Password>${webservice.sap.Z_WS_ACC_DOCUMENT_POST.password}</sec:Password>
        </http:authorization>
        <http:tlsClientParameters secureSocketProtocol="SSL">
          <sec:trustManagers>
          <sec:keyStore type="JKS" password="${keystorePassword}"
               file="D:\bea\jrockit-jdk1.5.0_14\jre\lib\security\cacerts"/>
          </sec:trustManagers>
          <sec:keyManagers keyPassword="">
           <sec:keyStore type="JKS" password="${keystorePassword}"
                file="D:\bea\jrockit-jdk1.5.0_14\jre\lib\security\cacerts"/>
          </sec:keyManagers>
        </http:tlsClientParameters>
    </http:conduit>

The only error message I receive is that

2009-10-19 08:05:03 ERROR -
ch.fr.xxx.yyyy.webservices.sap.WebServiceIBANCreate:44 - Exception :
javax.xml.ws.soap.SOAPFaultException: Could not send Message.

Any idea ?