Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / C#
Article

Sending SMS using .NET through a Web service

Rate me:
Please Sign up or sign in to vote.
2.87/5 (87 votes)
7 Jun 20043 min read 1.1M   45.2K   178   266
This article will help you to know how to use web services in .NET

Image 1

Introduction

This article is about sending SMS using .NET through web service. With the help of this article we can easily understand how to use web service in .NET and also you will get some information about SMS, GPRS etc. This web service will help you to give the notification if the service unable to deliver.

How does it work?

Initially when undergoing this study I think sending SMS to different services will be a problem, for sending SMS we have to tie up with all the services it is not possible at all, while studying this most of the services provides GPRS(General Packet Radio Service ) facility. GPRS has more functionality and here we are going to use only one that is Internet email services. So it makes our work little easier. After that I think how to find out the services for that particular mobile number. Now it became very critical, then I found a web service that provides us all the information that we needed. Let we discuss in upcoming paragraph.

What is GPRS?

With GPRS you can enjoy a continuous wireless connection to data networks and access your favorite information and entertainment services. GPRS technology allows mobile phones to be used for sending and receiving data over an Internet Protocol (IP)-based network. GPRS as such is a data bearer that enables wireless access to data networks like the Internet. The applications using GPRS are WAP, MMS, SMS, Java and the PC dial-up (for example, Internet and e-mail).

Internet email services come in the form of a gateway service where the messages are not stored, or mailbox services in which messages are stored. In the case of gateway services, the wireless email platform simply translates the message from SMTP, the Internet email protocol, into SMS and sends to the SMS Center. In the case of mailbox email services, the emails are actually stored and the user gets a notification on their mobile phone and can then retrieve the full email by dialing in to collect it, forward it and so on.

Upon receiving a new email, most Internet email users do not currently get notified of this fact on their mobile phone. When they are out of the office, they have to dial in speculatively and periodically to check their mailbox contents. However, by linking Internet email with an alert mechanism such as SMS or GPRS, users can be notified when a new email is received.

For more information about GPRS click here

Using the code

In this article I am using a web service which already exists. Since this web service is tie up with ICQ instant messaging service make our work easier. With the help of this web service we can able to send SMS to various countries like India, US, UK, Malaysia, Japan etc. In this article I have used the web service from www.webservicex.com they are providing Webs Service Definition Language (WSDL) link for sending SMS.

Here I m attaching the sample code for sending SMS.

C#
private void Send_Click(
 object sender, System.EventArgs e)
    {
      try
      {
        SmsTest.net.webservicex.www.SendSMS smsIndia= 
          new SmsTest.net.webservicex.www.SendSMS();
        SmsTest.com.webservicex.www.SendSMSWorld smsWorld =  
          new SmsTest.com.webservicex.www.SendSMSWorld();
        if(rdoType.SelectedValue == "1")
          smsIndia.SendSMSToIndia(txtMobileNo.Text.Trim(), 
            txtEmailId.Text.Trim(), txtMessage.Text);
        else 
          smsWorld.sendSMS(txtEmailId.Text.Trim(), 
           txtCountryCode.Text.Trim(), txtMobileNo.Text.Trim(), 
           txtMessage.Text);
        lblMessage.Visible = true;
        lblMessage.Text="Message Send Succesfully";
      }
      catch(Exception ex)
      {
        lblMessage.Visible = true;
        lblMessage.Text="Error in Sending message"+ex.ToString();
      }
    }

    private void rdoType_SelectedIndexChanged(
     object sender, System.EventArgs e)
    {
      if(rdoType.SelectedValue =="1")
        txtCountryCode.Enabled = false;
      else
        txtCountryCode.Enabled = false;

    }

Conclusion

The most important feature is it will give mail alerts if the SMS is not send to the user. And it will not support all the services which has GPRS facilities.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I have done Bachelor in Mechanical Engineering. I have strong background in C#, ASP.NET, SQL server 2000. And i also worked in some small application in Mobile.NET and CF.NET

Comments and Discussions

 
GeneralRe: send/receive sms through web service Pin
Hemant_ec481-Mar-08 0:07
Hemant_ec481-Mar-08 0:07 
QuestionRe: send/receive sms through web service Pin
rajins8-Jul-08 14:50
rajins8-Jul-08 14:50 
GeneralRe: send/receive sms through web service Pin
Meena Trivedi18-Jun-10 21:29
Meena Trivedi18-Jun-10 21:29 
GeneralGetting Error when running the project. Pin
Gowtam Kishore25-Jul-07 23:18
Gowtam Kishore25-Jul-07 23:18 
GeneralRegarding SMS Pin
Anishever23-Jul-07 20:06
Anishever23-Jul-07 20:06 
QuestionError while running code [modified] Pin
asawant15-Jul-07 21:21
asawant15-Jul-07 21:21 
GeneralHai Pin
Boopathi M9-Jul-07 2:54
Boopathi M9-Jul-07 2:54 
GeneralMobile E-mail Pin
Shakeel Mumtaz23-Jun-07 20:57
Shakeel Mumtaz23-Jun-07 20:57 
NewsAbt WEB SERVICE Pin
mvnsrpavankumar19-Jun-07 23:47
mvnsrpavankumar19-Jun-07 23:47 
Generaldear i need your help Pin
Shakeel Mumtaz10-Jun-07 5:44
Shakeel Mumtaz10-Jun-07 5:44 
GeneralNot Working in andhra Pradesh Pin
mrMdpendable15-May-07 21:17
mrMdpendable15-May-07 21:17 
Generalsms problem Pin
conceptinfosys11-May-07 22:44
conceptinfosys11-May-07 22:44 
Questionrequest from Robert Rouse Pin
Sean Ewington11-May-07 11:12
staffSean Ewington11-May-07 11:12 
QuestionReceiving SMS probelm Pin
Nirmal8425-Apr-07 11:40
Nirmal8425-Apr-07 11:40 
Generalphp sms Pin
oopson12-Apr-07 1:07
oopson12-Apr-07 1:07 
GeneralRe: php sms Pin
PEclat18-Apr-08 0:40
PEclat18-Apr-08 0:40 
GeneralCannot send sms from my website Pin
Mukesh@niit9-Apr-07 19:52
Mukesh@niit9-Apr-07 19:52 
Generaly gateway can u helpe Plz Help Pin
Shamsseldin7-Apr-07 17:54
Shamsseldin7-Apr-07 17:54 
QuestionSending SMS using .NET through a Web service Pin
Member 391034511-Mar-07 2:03
Member 391034511-Mar-07 2:03 
GeneralIs this joke or what Pin
Programmer@Coding12-Feb-07 0:43
Programmer@Coding12-Feb-07 0:43 
QuestionSMS Pin
Member 27340625-Feb-07 23:09
Member 27340625-Feb-07 23:09 
GeneralSMS from asp.net Pin
RadhikaKulal5-Feb-07 21:00
RadhikaKulal5-Feb-07 21:00 
QuestionAbout using the SMS service in other applications. Pin
Maheedhar Vishwanath28-Dec-06 0:42
Maheedhar Vishwanath28-Dec-06 0:42 
Generalhello Pin
maqspeed29-Nov-06 0:05
maqspeed29-Nov-06 0:05 
GeneralSMS WebServices.. Pin
Rajkumarvasan15-Nov-06 19:33
Rajkumarvasan15-Nov-06 19:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.