I am developing a web application in asp.net in which i want to send sms on mobile phones using GSM Modem. For this purpose I need some help or API for sending sms. If anyone have such experience in this field then kindly share with me and provide me some tutorial links or personal help.
Thanks in advance
Regards
I've used:
GSMComm
And the commercial product:
MessagingToolkit
Both worked reasonably well.
Use an SMS gateway software which will provide you an HTTP interface for communicating with the SMS carrier medium. For the applications it is easier to interact using the application layer protocols like HTTP instead of going into the details of the SMS protocols. Refer to the following post for more details. https://stackoverflow.com/a/8034756/676803
Related
Can anybody tell me that how a message will send on phone from a desktop application. I have a module in which i have to send sms to my user's mobile i do not how it is possible can anybody tell how this is possible
You could hook into 3rd party software, for example: http://www.textanywhere.net/
Note: these are paid services.
you need some kind of sms gateway in order to achieve this but gateways are not free they are paid services. how ever you can also use gsm modem to achieve this.
I want to program a simple GUI to connect to Yahoo! Protocol and act as a messengers which use them now. So, could any one describe Yahoo! Protocol structure ( Please help me in using of latest version of this protocol ).
Thanks about your attention.
I think you will find these links helpful as they describe several aspects the Yahoo! Protocol...
http://sourceforge.net/projects/ycs/
http://www.ycoderscookbook.com/
http://www.codeproject.com/KB/vb/YCC_Trainer.aspx
Yahoo Messenger Library C#
http://www.carbonize.co.uk/ymsg16.html
http://libyahoo2.sourceforge.net/
http://www.venkydude.com/articles/yahoo.htm
some general information http://en.wikipedia.org/wiki/Yahoo!_Messenger_Protocol
I suppose to develop sms application(basically send\receive) using c# 4.0.In this i wish to use NOKIA 6630 phone as the GSM moderm.i have two problems here.
1)could any one tell me a better free sms gateway for this?
2)is nokia 6630 have gsm mordem?.
i m heavily appreciated with your answers.
Not sure what do you mean by free sms gateway here when you are using your phone.
6630 has a modem. So you can use it. If you can have PC suite (or Ovi suite) in your pc, you should visit these links:
http://www.emant.com/index.php?tid=681002
http://www.forum.nokia.com/info/sw.nokia.com/id/bd896b31-92ba-4624-aa9d-ebf732e7cc0d/Nokia_PC_Suite_Connectivity_API_1_1.html
If you do not want PC Suite and want to develop stand alone application, you need to send sms using AT command. You need to use the SerialPort class for this.
In order to use your phone as a GSM Modem connect to it as if you are connecting to a Serial Port. (There are drivers which adapt USB to Serial Port. Your phone drivers might do this).
Once you manage to connect to it you can send commands such as AT+CNMI (to receive) and AT+CMGS (to send).
You might want to connect via hyperterminal to try it out first before you program it.
A good tutorial is here.
You have one good choice to install one sms Gateway for eg. NowSMS gateway to send or receive messages. Its good one and all the related help for installation and configuration is given here http://www.nowsms.com/doc/installing-nowsms
But one problem you had while using this gateway for receiving messages you need to change your mobile phone as not supported this feature for nowsms gateway.
I ve developed a c# winforms application for sending sms by using this article of Sending sms using GSM It works pretty well... Now i want to send sms using GSM communication (ie) a mobile phone connected to PC and i have detect it and send sms using it in asp.net.....
Is it possible Connecting and sending message through GSM modem using asp.net?
Of course you can! The only point is that, as ASP.NET is a server side programming, the GSM modem will have to be connected to the server running the app. Even, your already developed code can be reused. Put that code as an assembly with public interface to get the functionalities. Include it in the ASP.NET app and you can send SMS.
There should be no difference if your app is a regular console/winforms app or whether it's an ASP.NET app.
You would just want to be a bit more security-conscious if anyone on the internet is able to connect to your website and send messages...
Yes. You could create a Windows service that contains the logic for accessing the GSM modem and sending SMS messages. This service can then be access from your ASP.NET web application.
There are lots of articles out there on running a WCF service as a Windows service, here's one on MSDN, Hosting and Consuming WCF Services.
But on second thought, setting up a service may be overkill here. You could use your library from within your app just as fine.
You can do it as mentioned by Kangkan in his answer. You will need to connect your modem to the server which is less feasible and very much less recommended to do so. The best option you can have is to subscribe to a third-party SMS gateway and send SMS through their HTTP apis. There are many such providers available that provide this kindaa service. Just google them and you'll find the one that best suits your needs.
im doing a application through which i want to send an sms.im having a gsm enabled modem.can anyone give me an idea or please send me some links to lookup on it.
we dont have sql, not using asp.net.we need to do it in c#
These two articles are result of a quick google search. Hope this helps
How to send SMS messages from C# using an SQL database
Sending SMS using .NET through a Web service
How To Send and Receive SMS using GSM Modem might be a good start.
More info here: google