I am trying to send a test message to the test system (at https://messaging.easylink.com) but am receiving the following back when submitting via SOAPUI. The RequesterID and Password that I am using is the one I use on the portal. My RequesterID is DEMO/MWIRTH.
Visit us at <a href="http://apiforums.easylink.com">EasyLink API Forums</a>
My SOAP request is as follows:
**********************************************************
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Header>
<Request xmlns="http://ws.easylink.com/RequestResponse/2011/01" xmlns:ns2="http://ws.easylink.com/JobSubmit/2011/01">
<ReceiverKey>https://test2messaging.easylink.com/soap/sync</ReceiverKey>
<RequestID>WEX_TEST_JOB1</RequestID>
<Authentication>
<XDDSAuth>
<RequesterID>********</RequesterID>
<Password>**********</Password>
</XDDSAuth>
</Authentication>
</Request>
</S:Header>
<S:Body>
<ns2:JobSubmitRequest xmlns="http://ws.easylink.com/RequestResponse/2011/01" xmlns:ns2="http://ws.easylink.com/JobSubmit/2011/01">
<ns2:SubmitId>WEX_TEST_JOB1</ns2:SubmitId>
<!--<ns2:DocumentSet/>-->
<ns2:Message>
<ns2:MessageId>WEX_TEST_JOB1_MSG1</ns2:MessageId>
<ns2:JobOptions>
<ns2:EnhancedEmailOptions>
<!--Optional:-->
<ns2:ExpirationDays>14</ns2:ExpirationDays>
<!--Optional:-->
<ns2:Subject>Message 1 from OpenText</ns2:Subject>
</ns2:EnhancedEmailOptions>
</ns2:JobOptions>
<ns2:Destinations>
<ns2:Internet>
<ns2:Email>test.sample@test.com</ns2:Email>
</ns2:Internet>
<!-- <ns2:DeliveryItemGeneric type="internet">
<ns2:Address>test.sample@test.com</ns2:Address>
</ns2:DeliveryItemGeneric>-->
</ns2:Destinations>
<!--
<ns2:Reports>
<ns2:DeliveryReport>
<ns2:DeliveryReportType>detail</ns2:DeliveryReportType>
</ns2:DeliveryReport>
</ns2:Reports>
-->
<ns2:Contents>
<ns2:Part>
<ns2:Document>
<ns2:DocType>text</ns2:DocType>
<ns2:DocData format="text">Hi from SOAPUI. This is a test message 15</ns2:DocData>
</ns2:Document>
</ns2:Part>
</ns2:Contents>
</ns2:Message>
</ns2:JobSubmitRequest>
</S:Body>
</S:Envelope>