I am using (https://test2messaging.easylink.com/soap/async) and I am using <SenderKey> which is the URL of my service and my jsresult is returing a null. When I check in the portal the status is Delivering but when I run the application it is returning me a null value.
It is working as expected when I use (https://test2messaging.easylink.com/soap/sync).
Can you please let me know where I am going wrong?
Regards,
Preeti
When you initiate an async request, you won't get the JobID directly - instead, you'll get it pushed to your SenderKey at a later time. What did you provide as the SenderKey? Is there a server actually configured at that URL to receive the result?
Also - the result of a JobSubmit request (synchronous or asynchronous) is just the JobId. If you want to get the results of that job, you would need to submit a JobDeliveryStatus request.
If what you really want is "I want to submit a job and have you push something to me when it's done so I know what happend", then a different approach is probably merited. Maybe having the system create a report and deliver it to your web service at job completion time would be a better way to go.