Wireless development

Moderators: None (Apply to moderate this forum)
Number of threads: 207
Number of posts: 313

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Edit Report
sms-ing.. how to code? Posted by hogy on 27 Nov 2000 at 7:52 AM
hi.. i wanted to write alittle program to send sms' to GSM handsets<br>
can someone point me in the right direction?<br>
are there any web pages out there that talk about the protocol or??<br>
please help.. :)<br>
i can code in c, c++ and java..<br>
thanx :)<br>



Edit Report
Re: sms-ing.. how to code? Posted by avinash on 6 Dec 2000 at 4:00 AM
: hi.. i wanted to write alittle program to send sms' to GSM handsets<br>
: can someone point me in the right direction?<br>
: are there any web pages out there that talk about the protocol or??<br>
: please help.. :)<br>
: i can code in c, c++ and java..<br>
: thanx :)<br>
: <br>
: <br>
Go through the details of Push Technology that can be used to send such messages. But before that probably we need a SMSC and a SMS gateway to get the process done. No SMS is directly sent to the recipient, it has got to go to SMSCenter from where it is routed to the address specified, be it email address or a phone no. Infact thing is something like this that for SMS purpose, each of the mobile phone is also associated with an email address. <br>
So even if we write a code that is limited to sending it to the SMSC, we can't go any further. And if we have to go any further we need a SMSC and SMS Gateway of our own.<br>
<br>
By the way, can you just tell what your application is? is that sending push messages or something else? May be if you can be more specific in the doubt, this would help!<br>
<br>
with regards<br>
avi


URL:http://www.mobilefrontline.com/sms/homepage.asp

Edit Report
Re: sms-ing.. how to code? Posted by avinash on 6 Dec 2000 at 4:01 AM
: hi.. i wanted to write alittle program to send sms' to GSM handsets<br>
: can someone point me in the right direction?<br>
: are there any web pages out there that talk about the protocol or??<br>
: please help.. :)<br>
: i can code in c, c++ and java..<br>
: thanx :)<br>
: <br>
: <br>
Go through the details of Push Technology that can be used to send such messages. But before that probably we need a SMSC and a SMS gateway to get the process done. No SMS is directly sent to the recipient, it has got to go to SMSCenter from where it is routed to the address specified, be it email address or a phone no. Infact thing is something like this that for SMS purpose, each of the mobile phone is also associated with an email address. <br>
So even if we write a code, it is limited to sending it to the SMSC, we can't go any further. And if we have to go any further we need a SMSC and SMS Gateway of our own.<br>
<br>
By the way, can you just tell what your application is? is that sending push messages or something else? May be if you can be more specific in the doubt, this would help!<br>
<br>
with regards<br>
avi


URL:http://www.mobilefrontline.com/sms/homepage.asp

Report
Re: sms-ing.. how to code? Posted by lil on 24 Apr 2001 at 1:14 PM
: : hi.. i wanted to write alittle program to send sms' to GSM handsets
: : can someone point me in the right direction?
: : are there any web pages out there that talk about the protocol or??
: : please help.. :)
: : i can code in c, c++ and java..
: : thanx :)
: :
: :
: Go through the details of Push Technology that can be used to send such messages. But before that probably we need a SMSC and a SMS gateway to get the process done. No SMS is directly sent to the recipient, it has got to go to SMSCenter from where it is routed to the address specified, be it email address or a phone no. Infact thing is something like this that for SMS purpose, each of the mobile phone is also associated with an email address.
: So even if we write a code, it is limited to sending it to the SMSC, we can't go any further. And if we have to go any further we need a SMSC and SMS Gateway of our own.
:
: By the way, can you just tell what your application is? is that sending push messages or something else? May be if you can be more specific in the doubt, this would help!
:
: with regards
: avi
:
:
Can you please tell more about SMS Center and SMS Gateway?

Report
Re: sms-ing.. how to code? Posted by lil on 27 Apr 2001 at 10:32 AM
: : hi.. i wanted to write alittle program to send sms' to GSM handsets
: : can someone point me in the right direction?
: : are there any web pages out there that talk about the protocol or??
: : please help.. :)
: : i can code in c, c++ and java..
: : thanx :)
: :
: :
: Go through the details of Push Technology that can be used to send such messages. But before that probably we need a SMSC and a SMS gateway to get the process done. No SMS is directly sent to the recipient, it has got to go to SMSCenter from where it is routed to the address specified, be it email address or a phone no. Infact thing is something like this that for SMS purpose, each of the mobile phone is also associated with an email address.
: So even if we write a code, it is limited to sending it to the SMSC, we can't go any further. And if we have to go any further we need a SMSC and SMS Gateway of our own.
:
: By the way, can you just tell what your application is? is that sending push messages or something else? May be if you can be more specific in the doubt, this would help!
:
: with regards
: avi
:
:

Hello. I just got the latest info about SMS. We need to depend on a telco to provide us with the network/gateway and also a API specifications. By then, you can start program about it.


Report
Re: sms-ing.. how to code? Posted by magician1318 on 15 Dec 2008 at 7:16 AM
: : : hi.. i wanted to write alittle program to send sms' to GSM handsets
: : : can someone point me in the right direction?
: : : are there any web pages out there that talk about the protocol or??
: : : please help.. :)
: : : i can code in c, c++ and java..
: : : thanx :)
: : :


There are few open source sms libraries out there like gnokii and gammu.
With it, you can control your GSM modem/handsets to send sms.
Try to visit www.fillyourtime.blogspot.com. It provides guide for beginner to build a simple SMS gateway using Gammu.

Hope that helps.
Report
Re: sms-ing.. how to code? Posted by johnlin on 12 Jan 2009 at 7:45 PM
Let me try and answer your questions.

Do you need to receive SMS? If you need to receive SMS, you will need to host your own GSM device or modem so that people can send you SMS.

If not, you can just use internet SMS gateways like clickatell to do the work, and post to them by HTTP, XML or email. The cost is about 6-8 cents per SMS. There are cheaper services, but not always reliable. If you need to host your own GSM device, you can use software like http://www.kannel.org (GPL Open Source) or http://visualtron.com/enterprise/sms-gateway.

Regards.
Report
Re: sms-ing.. how to code? Posted by magician1318 on 15 Dec 2008 at 7:26 AM
: : : hi.. i wanted to write alittle program to send sms' to GSM handsets
: : : can someone point me in the right direction?
: : : are there any web pages out there that talk about the protocol or??
: : : please help.. :)
: : : i can code in c, c++ and java..
: : : thanx :)
: : :


There are few open source sms libraries out there like gnokii and gammu.
With it, you can control your GSM modem/handsets to send sms.
Try to visit this link

http://fillyourtime.blogspot.com/2008/12/sending-sms-from-pc.html

It provides guide for beginner to build a simple SMS gateway using Gammu.

Hope that helps.



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.