I know there are lots of 3rd party sites to send bulk SMS via the internet, but if I wanted to create one myself, how would I go about it? I know how to create an SMS gateway using my mobile phone, which is very slow. Is there any other way of creating an internet SMS gateway?
相关问题
- sqlbox looking for mysql instead of mssql
- SMSC is having multiple connections with client Bu
- sending bulk sms stops in middle
- Kannel as SMPP server
- How to set up Kannel without using a 3rd party gat
相关文章
- sqlbox looking for mysql instead of mssql
- SMSC is having multiple connections with client Bu
- sending bulk sms stops in middle
- Kannel as SMPP server
- How to set up Kannel without using a 3rd party gat
- Check if a process is running using PHP in Linux
- How do I design sms service?
- Send and receive SMSs to a PHP script?
Hmm... According to the your requirement you will need a GSM modem. Using that you can send SMS messages with Standard AT commands. Then you need to develop an HTTP server that gets the request, process it and send the AT commands to the GSM modem.
I designed something similar (although for far fewer text messages) for my employer. A Linux server is connected to a Bluetooth USB dongle for receiving data from embedded sensor devices in the lab and a Siemens TC35 GSM modem via a RS232 serial link. The server can send messages to selected employees phone if the sensors determine there is a problem which is also handled by a C++ program. In addition there is a J2EE app which allows employees to enter messages via a web page that are then sent as text messages to employees they select. The J2EE app dumps the messages into a database which are then collected by the C++ program and sent using
AT
commands via the TC35. It is done this way so sensor problem messages always have priority.Programming wise it was nothing special as
AT
commands are easy to understand. Just make sure your programming is secure so it can't be hijacked by a spammer and that the modem is located in a room with good GSM/3G coverage and isn't in a basement.Oh and its also a good idea to have your program ask the GSM modem for its signal strength and other cell base station information at a regular interval and store this in a special database table. This will allow you to spot problems with your cell provider and move to another one if required. I used this information to discover that the base station I was using appeared to be going offline or having technical problems quite frequently which caused my modems message throughput to slow down to a trickle.
Good Luck
You'll need to talk to an SMSC with an SMPP protocol. You can also use Kannel, it provides nice features to work with different types of SMSC including GSM modems as well as
send-sms
HTTP service and more.it can be done in Two Ways 1)GSM modem 2)http (service provider)(Faster than Modem)
I have used http://www.ozekisms.com/ gateway Service
C# Code to send Http Request and how to add User name and Password IP address and Port.
Refer this Code hope will help you out.
Thanks.