0

i need to develop an sms service from iis web server. Iam new to this and i would appreciate any good tutorials on this.

user384636
  • 499
  • 2
  • 5
  • 19
  • poke around in google, when you have a problem, then post it here.. we'll definitely help then. – robobooga Jan 27 '11 at 07:59
  • Search the web for "SMS API" and you'll find many already exist. You are not going to write your own SMS service unless you're actually working at a telephone company. You will use someone else's service from your application. – Dan Grossman Jan 27 '11 at 08:01
  • My web app must send the sms. is it possible for the web app to send data to these sms-API? – user384636 Jan 27 '11 at 08:22

1 Answers1

2

You will need..

1. An SMS gateway - Either free or paid, depending on country/carriers
etc.

2. The Web API(specific to your platform), mostly HTTP,SOAP or REST
based to the SMS gateway.So that messages to/from your application
can be translated by the gateway.

Take a look at these related topics..

  1. SMS Gateway
  2. Programmatic SMS
  3. want to build the SMS equivalent of a web server
  4. Replying to an SMS sent from a modem of SMS service
Community
  • 1
  • 1
Robin Maben
  • 22,194
  • 16
  • 64
  • 99