sms

can we send applet through sms (binary data)

Hi , Is it possible to send Java Applet through SMS. The requirement is to download a Java applet through SMS to a mobile. Later install it . Appreciate your guidance on this. Regards Sandeep ...

Suppress headers when sending an SMS to a cell phone provider's email to SMS gateway

I am sending an SMS transit text message to a mobile phone carrier's SMS gateway. I am doing this by sending the message to the carrier's assigned email address such as [email protected]. The problem is that a short message turns into multiple text messages because of the email headers as shown here: FRM:[email protected] SUBJ:Th...

Format of sms text in Twilio api

i am working on sms application with twilio api, i faced a problem about sms formatting 1) a string " i'm here" in php this is going like this in sms body i\'m here i dont want that slash to come up in sms 2) i want to add line break in message how can i do that. like this Name age phone Simer 23 2546181541 Mark 25 3521447821 ...

xcode 3.2.4 simulator issue with in-app messaging

Just upgraded to xcode 3.2.4 and am having some issues with the simulator. Prior to the xcode upgrade I was testing my app in the simulator for using in-app mail and in-app messaging. I would switch between the different OS (3.1 and 4 - I believe) and check to make sure that the in-app messaging functions were disable on a device prior t...

Don't Play SMS Ring if I delete the New SMS in C# netcf

Hi at all! My problem begin when i HangUp a call before answer. 2 italian operators, Wind and Vodafone, in this case, send a SMS from the contact that call with some text like "I call you at 12 am" So, when i intercept a new SMS by SystemState.MessagingSmsUnread>0, i check if the Sender of last message is the number of the call that i ...

Android: How to send and receive data through SMS messages

I want to send some data (NOT MULTIMEDIA) through an SMS message in Android. Can this be done? I just want to send a very small amount of data from one phone to another, as XML or something. ...

simple app which sends one sms without gui required

Hello , I want to write an app to send an sms from a shortcut on a home screen. That is all. I just can't understand within the framework how I can write such an app. Here's what I've tried so far and what my ideas are: I wrote an activity that sends an sms using SmsManager within the onCreate() however, this just keeps on sending me...

Text messaging on the iPhone - accessible from the SDK?

Is there an API in the iOS SDK that deals with text messaging? ...

Android - why ContentObserver invokes itself?

Hi, I am trying to delete received SMS in ContentObserver (on "content://sms/") onChange() method using contentResolver.delete, but after deleting ContentObserver is invoked one more time. Could you explaing my, whe ContentObserver invokes itself despite deliverSelfNotifications() returns false? I foud soultion to uregister ContentOb...

How to make Android app update in execution time.

Hey, Im trying something in android, that has to get the words sent in sms and print on the emulator screen. But the app doesnt update in time. I send a message. Ok. But when I open the app it doesnt print the words that I've sent. So i have to close the emulator and then open it again, and run the app, and the word is there. Id like t...

How many database columns associated with a SMS in android?

I want to read all the messages and their respective details from my phone. For this I am using the Uri like this: Uri sms = Uri.parse("content://sms/"); But I don't know how many columns in database which are associated with this uri. I want to display the following information: Message Type Sender Number Message Body Timestamp ...

Android: SMS filter - Can you have priority listener for SMS messages?

Hi, I am trying to implement an app that will only listen for a certain header in the SMS. (Parse the sms message and look for some header) That's not hard to do. The problem is once the app finds the header and knows this SMS is for me, I don't want other app(that has broadcast listener on SMS) to receive SMS. (for example, 'messages' ...

automatic sms decompression?

okay, pretend you had some means of distributing sms text messages to multiple phones (go ahead, pick any, so many already exist), could you send compressed text messages that were capable of being decompressed by the phone? specifically, could you send more than 160 characters per text message that would NOT require additional software ...

sending sms(text) from java code to mobile phone in windows

hi, Is it possible to send sms from windows machine to mobile phone. I have searched a lot and got the following code. Sender.java package sms; import java.util.Date; public class Sender implements Runnable { private static final long STANDARD=500; private static final long LONG=2000; private static final long VERYLONG=200...

How to access the SMS/MMS database on Android without using "content://sms"

Hi stackies, I recently read that the content provider content://sms shouldn't be used to access the SMS store, as there could be some mobile phones that might not know how to deal with it. So, what would be the best way to access the SMS database in Android? How can I access mmssms.db (this should be the database I need to deal with, ...

What are options for implementing email or SMS from an embedded system?

I'm interested in sending email notifications from a laboratory instrument (implemented on an ARM9, C/C++, RTOS). From what I understand, I would need to configure the SMTP gateway, username and password. The instrument has a limited UI, but I think we could manage it. Do solutions like this work? It seems like it would be convenient - b...

How do I send sms to multiple phone numbers in android

using sms manager it does not work with a csv list; is there any way besides looping and sending more than one text to send to multiple recipients? or is this by design a non-spam feature? ...

Broadcast SMS parsing

I receive from network Broadcast SMS with 88 bytes of data, even if I has sent 10 bytes. I want to know the structure of these 88 bytes. Where in those data is the data itself and where is header? Shmuel ...