| Author: Abhishek Arya 04 Jun 2006 | Member Level: Diamond | Rating:  Points: 2 |
send sms using webservise
http://www.codeproject.com/cs/webservices/SendSmsThroughWS.asp
|
| Author: Nicholas Bruce 23 Jul 2007 | Member Level: Bronze | Rating:  Points: 2 |
Hi,
To receive messages using the Esendex SDK within ASP.Net using Vb you need to follow these steps.
1. Create a new ASP.Net vb Solution. 2. Add a web reference to the solution with the following URL
https://www.esendex.com/secure/messenger/soap/InboxService.asmx 3. rename this reference as messenger 4. Add a button to the Default.aspx 5. within the designer double click the button you just created 6. In the click event of the button add the following code
Dim thisMessenger As New messenger.InboxService() Dim thisHeader As New messenger.MessengerHeader()
thisHeader.Username = "****" ' Your Esendex Username here thisHeader.Password = "****" ' Your Esendex password here thisHeader.Account = "****" ' Your Esendex reference thisMessenger.MessengerHeaderValue = thisHeader
Dim msgs = thisMessenger.GetMessages()
I hope this helps
regards
Nicholas Bruce
|