Link to home
Start Free TrialLog in
Avatar of narmi2
narmi2

asked on

Text Messaging Server

Hi,

I want to create my own text messaging server without using someone elses API's.  I need to make my own one because I am expecting a lot of users and don't think these third party API's are realiable or fast enough.

How would I go about doing this?

For example, how would i contact a network provider and ask them to set this up
Will they give me an api for the web?
how much will it code?
what hardware will i need

and so on.
Avatar of gmilhon
gmilhon

You can send messages to carrier's SMS networks directly, or through a 3rd party that can route it to the proper carrier. If you know the carrier, you can send it to them directly, many carriers support SNPP and SMTP to send messages. Here is a list of SMTP servers for carriers: http://www.notepage.net/smtp.htm. Here is a list of SNPP servers for carriers: http://www.notepage.net/snpp.htm. The SMTP API would be easiest to use. There are existing APIs for SNPP if you go that route, such as jsnpp for Java: http://sourceforge.net/projects/jsnpp. Again, this requires you to know what carrier you need to send the message to. If you don't know, you will have to use a 3rd party to route it for you.
Avatar of narmi2

ASKER

Would I be able to use this for my situation?

http://www.kannel.org/
If you just have an application that sends SMS messages to specific carriers then it isn't necessary.

If you are routing messages from one carrier to another, or say from a carrier to your application, then Kannel would provide you some benefits. But if you aren't integrating with the carriers, then it isn't necessary and would just be overhead.
Avatar of narmi2

ASKER

i will be sending messages across the globe...
ASKER CERTIFIED SOLUTION
Avatar of gmilhon
gmilhon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial