I'm using soapUI tool to send the following request to http://test2messaging.easylink.com:80/soap/sync for Authentication:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns="http://ws.easylink.com/RequestResponse/2011/01"
xmlns:ns1="http://ws.easylink.com/Authenticate/2011/01">
<soapenv:Header>
<ns:Request>
<!--Optional:-->
<ns:SenderKey></ns:SenderKey>
<ns:ReceiverKey>http://test2messaging.easylink.com</ns:ReceiverKey>
<!--Optional:-->
<ns:RequestID></ns:RequestID>
<!--Optional:-->
<ns:Authentication>
<!--You have a CHOICE of the next 2 items at this level-->
<ns:XDDSAuth>
<ns:RequesterID >xxxxxxxxxxxxx</ns:RequesterID>
<ns:Password>xxxxxxxxxx</ns:Password>
</ns:XDDSAuth>
</ns:Authentication>
<!--Optional:-->
<ns:InputChannel></ns:InputChannel>
<!--Zero or more repetitions:-->
<ns:ResultOption name="ac vinclis"></ns:ResultOption>
</ns:Request>
</soapenv:Header>
<soapenv:Body>
<ns1:AuthenticateRequest>
<!--Optional:-->
<ns1:Domain></ns1:Domain>
</ns1:AuthenticateRequest>
</soapenv:Body>
</soapenv:Envelope>
The service is returning:
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Body>
<soapenv:Fault xmlns="" xmlns:soapenv1="http://schemas.xmlsoap.org/soap/envelope/">
<faultcode>soapenv:Server</faultcode>
<faultstring>Internal JMS error</faultstring>
<detail>
<detaildata>Result missing namespace information</detaildata>
</detail>
</soapenv:Fault>
</Body>
</Envelope>
Besides the above error, I'm not able to use the HTTPS protocal to call the service.