sms

how do i set up an SMS server?

just like google as the number GOOGL (46645) i would like to also set up a server like this that will have the ability to receive text messages. how do i do this>??> ...

SMS: AT COMMANDS

i am trying to set up an SMS gateway on my computer here's some code i found: AT OK AT+CMGF=1 OK AT+CMGL="ALL" +CMGL: 1,"REC READ","+85291234567",,"06/11/11,00:30:29+32" Hello, welcome to our SMS tutorial. +CMGL: 2,"REC READ","+85291234567",,"06/11/11,00:32:20+32" A simple demo of SMS text messaging. OK can this be done in windows? ...

getting started with SMS developement

i will have the following set up: people will be sending text messages to a server, and that server will be forwarding the messages to other phone numbers i am not sure what kind of framework i should use. should i develop an SMS gateway and use AT commands? should i just try to somehow use AIM or GCHAT to capture and send SMS messa...

How does SMS gateways work?

I've been looking at systems such as txtlocal, esendex and clickatell. I need to send out a very large number of messages and ideally would like to go in at a lower level then using systems like these. Does anyone know how these SMS gateways like I've listed work in terms of actually sending out the messages? Will they have agreements wi...

Playing Chess via SMS Messaging

I know there are some pretty nice open-source chess engines with powerful AI, like Crafty, that also have a nifty command line interface. I also know that I can send e-mails with my SMS-capable phone, and that I can reply to such an e-mail, and it will be sent to my phone as a SMS text message. Is there any way I can combine the two? ...

connecting cell phone to computer

is it possible for me to intercept the text messages that get sent to my cellphone if i connect to my cellphone via bluetooth or USB or some other connection to my computer? i want to create a database with all of my received text messages and be able to control my cell phone through my computer by using it to send text messages i have...

sending SMS with VBA

does anyone know if this is possible? i was able to succesfully run hyperterminal and use it to send texts through my phone which is attached by USB. anyone know how to do it in VBA? ...

iphone sms application

How to develop a sms app for iphone? Are there any api available to develop this kind of app? Is there any other way to develop this type of app for iphone apart from using api Please suggest me some ideas.. Thanks ...

SMS connecting to a phone from C# and getting a response

I wrote code to send an SMS using my GSM phone which is attached to the computer through COM port. The code is below. The problem is I do see that it is in the outbox of the phone and it actually appears to have been sent, but when I contact the recipient they say that I have not received the message. I test the phone, and I create and...

c# sending sms from computer

i have this code: private SerialPort port = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One); Console.WriteLine("Incoming Data:"); port.WriteTimeout = 5000; port.ReadTimeout = 5000; // Attach a method to be called when there is data waiting in the port'...

serialport or USB port?

i am using this code:: http://stackoverflow.com/questions/3033324/c-serialport-question/3033402#3033402 to check what port my USB phone is connected to. supposedly USB would be a virtual com, but this seems to be incorrect i used the above code to detect where my phone is and the output is just garbage. is there a way for me to get ...

how to fix gateway timeout error in php???

Iam having a php file that sends text messages on mobile to all the users that i have in my database's particular table. Now the entries are like 2000 or so in number and this number will keep on increasing. On my page there is a small form that selects a list of the users to whom message is to be sent from a drop down and then user writ...

Service for sending SMS and making Voice Calls from Web site and Desktop application

We plan to integrate sending of SMS and making calls to our desktop and web applications. Both are written in Java. As for only sending SMS we know about great gateway from Clickatell. But ideally, we would like to use one service similar to it, but which supports Voice Calls and SMS. What service/gateway could you recommend? Here are...

Android - Get all sms in phone sent to a peson

I'm new to android programming. just to improve my skills, i started with some project in my mind. when app starts, it will show a button. on click of it, it will allow me to select a contact from the address book. then i want to retrieve all the sms sent to that contact (if they are stored in sms outbox). Is it possible. Can some one gu...

sending sms from windows application

I am creating a windows application which needs to send some sms to mobile phone.This is just for testing purpose. Now can I use my cell phone to get this done. I have android phone which can be connected to pc using USB. Application is created in C++, windows api. Any pointers will help ...

Need to open the SMS/MMS app and have an image pre-loaded into the text input in iPhone OS

Hello, I am trying to open the SMS/MMS app on the iPhone and have an image that is saved in the camera roll pre loaded into the text field. Is this possible? Here is the code I have tried: NSString *urlString = [NSString stringWithString:@"sms://asset/asset.JPG?id=1000000041&ext=JPG"]; NSString *escaped = [urlString string...

Recommendation for free sms api for testing purpose

I want to test my application and for that purpose I need some free SMS API that can work globally. This is just for testing purpose and my requirement is just for 15-20 sms. I tried lot of sms apis given by google and mentioned in stackoverflow but none helped. One helped smsglobal but after sending 2 sms and it stopped working . An...

Splitting an SMS Reply

When replying to an SMS, I have a limit of 160 characters. I currently have code set up to take a reply (which can be >160) and split it into a list of multiple texts each <160. It's also set up so that it keeps words whole. I included it: repl='message to be sent. may be >160' texts=[] words=repl.split() curtext='' for word in words: ...

java code to send sms on mobile

how to send sms to mobile using java code ...

Accept message from gsm devices and update table periodically

A gsm device sends data in each 3 seconds. 100 such devices are sending messages and there is a device to accept these messages. I want to insert these messages in mysql table in each 5 minutes using php. ...