|
How can i read sms messages in my inbox?i want to read the sms msgs ,no of msgs etc Can i do it in j2me?if yes how? i want to run the app on nokia and sony
Started by akshay on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In other words, you can't receive any sms.
However you can run your j2me application and wait for incoming sms.
I believe you can't read sms directly from your inbox.
See this please.
|
|
Do all cell companies have open APIs that allow you to send SMS messages like Twitter does?
Do you have to pay to do this?
Started by Blankman on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
For AT&T I believe.
They provide an easy API so that you can send SMS messages from yourMany (most?) mobile companies have email gateways allowing you to send an SMS.
A look at messagepub.
|
|
Is there a way to intercept an SMS with BroadcastReceiver as for example here but without showing any notifications to the user and immediately deleting the message that contains for example some keyword
EDIT:
What I need is to have some communication...
Started by michael on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
WAP is a SMS message with a URL, it's goal is to allow users it's a premium....
To receive and send SMS messages without your knowledge? SMS can also bill your phone so I'm thinking service to do the task your requesting.
|
Ask your Facebook Friends
|
We are building a web app that should be able to receive SMS messages and store the information contained in it in database.
Which methods have you used? Which service providers are out there that can assist?
Started by pierson on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The application in question was also sending SMS messages as well and we just did an http GET to a web page the Asterisk....
For a phone number and sms messages sent to that end up hitting a URL on your site to deliver them just.
|
|
Hi,
So in order to send an SMS myself, I need a GSM modem. How does the modem actually send the messages out though, doesn't it still need to connect to some network provider to deliver the messages? So I need a SIM card as well then. Can anyone explain...
Answer Snippets (Read the full thread at stackoverflow):
You can ....
Using a GSM modem to send SMS is basically phones can also act as modems.
The commands are sent to the modem over set for the given modem from the manufacturers web site .
Actions liking entering the PIN code or sending an SMS.
|
|
I have a app, which sends a lot of SMS messages to a central server. Each user will probably send ~300 txts/day. SMS messages are being used as a networking layer, because SMS is almost everywhere and mobile internet is not. The app is intended for use...
Started by Robert Parker on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Who knows....
If it is the fall back mechanism, you can then prompt the user letting them know that they will be prompted to confirm the level of SMS activity every 100 messages or so.
Let SMS be the fall back mechanism.
Be the case.
|
|
First, we use .net & sql server.
I have a client that is interested in a system that will send SMS messages at scheduled times.
I have never done anything like this except for sending an sms through an email gateway, like 5551234444@vtext.com. But, I ...
Started by Ronnie Overby on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Well, you either have to use....
Check out txtlocal
If you use a provider could have a batch process which sends the sms info and the time that you want it to be sent using their API.
Easiest way is to use an SMS gateway who provide an API.
|
|
After a review of the iPhone SDK documentation, I have not yet found a way for an application to be written such that it can programmatically process the content of an incoming SMS message within the iPhone platform. The idea would be for such an application...
Started by InSciTek Jeff on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Is there a possibility to read received SMS messages ?
Unfortunately, just registering with that scheme....
One for them.
Unfortunately, you cannot intercept - or be notified of - incoming SMS messages with the iPhone SDK.
|
|
Hello,
I'm using a Rails application and would like to send/receive text messages through my application. Two solutions I looked at is using SMS Gateway and using a cell phone paired with Bluetooth with my Mac and I have ultraSMS program running that ...
Started by Tam on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You indicate that....
Customers will begin messages with a code word, which will make the gateway route the message to your application.
At least here in Norway, SMS Gateways offer short (4 digit) numbers for incoming messages.
|
|
Hi Everyone,
I was wondering if anyone knew anything about programmatically getting the sms messages off of your phone's sim card on an android platform. I would like to write a program that allows you to save either individual messages or entire threads...
Started by Robbie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Import android.content.BroadcastReceiver intent) { Bundle myBundle = intent.getExtras(); SmsMessage [] messages = null; String("pdus"); messages = new SmsMessage[pdus.length....
Hello,
Here is a code snippet that lets you read messages.
|