I am Working on a project in VB.net and created an application for sending bulk sms to mobile phones through internet.I created a code and tried to send sms.But it dosen't work properly.When i tried it for a single sms, it is getting so much delay to receive the message.Is there any code for increasing the speed of message delivery?.The code i have in vb is shown bellow.
.................................................................................................................
Imports System
Imports System.IO
Imports System.Net
Imports System.Text
Imports System.Web
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim request As HttpWebRequest
Dim response As HttpWebResponse = Nothing
Dim url As String
Try
url = "http://sms.bulksmscochin.com/sendsms?uname=xxx&pwd=xxx&senderid=xxx&to=xxxxxxxxxx&msg=TESTING%20bulkSMS%20RELENT&route=A"
request = DirectCast(WebRequest.Create(url), HttpWebRequest)
response = DirectCast(request.GetResponse(), HttpWebResponse)
MessageBox.Show("Response: " & response.StatusDescription)
Catch ex As Exception
End Try
End Sub
End Class
...............................................................................................................