Hi,
I'm trying to send SMS through workflows. I have an SMS Gateway that accepts a URL along with querystring parameters. The URL looks like below.
http://www.jawalbsms.ws/api.php/sendsms?user=username&pass=password&to=mobile&message=test&sender=name
When I paste this URL in the browser with required parameters, I receive a message.
I'm trying to reflect the same in Workflow by using HTTP Web Request activity. I added the Web Service URL first as mentioned below. "Test URL" shows me connection successful message.
Next I set the properties of HTTP Web Request activity as follows.
Querystring parameters go into URI. But I don't receive a message when a workflow is triggered although activity executes successfully without any failure or message in the instance.
Output tokens from this activities show that the request succeeded (True) with status (200).
What could be the issue?