sms

SMS - Incoming Message Processing

Hello all, I'm looking for some recommendations on 'renting' a SMS processing gateway. Basically, (without going into the full details) i want my clients to be able to send a formatted txt from their mobile (generic technology) to a SMS gateway (via a service number). I then would like this gateway to run a http (or https) command to p...

How to deliver different charactersets over sms?

We have an aggregator application written in java which delivers xml based contents from third parties to different SMSC's which in turn deliver it to handsets.The xml content is mostly in plain english other than payload which could be GSM 03.38, IA5, ISO-8859-1, Unicode, binary etc.We have only one handset for testing.We find other tha...

Defining data encoding of SMS messages in Android

I'm working on an application using the SMS apis for android. The receiving end is an embedded unit that only supports 7-bit encoded SMS and the string I'm sending consists only of symbols from this particular alphabet which makes you think that Android is going to send it encoded as 7 bit. But that is not the case. Therefore I'm search...

can i send sms in my phone ? programically~!

Hi there i'm a newbee of iphone os sdk my question is that can i send sms in my phone ? programically~! yesterday, i found a example code and coded it. but the code gave me a sms dialog ( Internal sms program ). i just want to send sms programically without the interanl sms program is there any example code? thanks in advance ~! ...

Character count in MFMessageComposeViewController

Is there a way of showing the character count in the MFMessageComposeViewController? I have turned it ON in the iPhone settings for the native sms app but in my app it does not show it. ...

application not launching via sms

hey all, this question is related to this question. i was able to launch the app from another app but not from sms. the URL scheme is simpleApplication, so if i have the app installed in the device, then typing "<simpleApplication://>" in the sms body should convert it into a hyperlink to the app, right? but this is not happening. could ...

Is it possible to block outgoing SMS on an Android phone?

Is there a way to listen for outgoing SMS messages in Android? If so, is it possible to prevent the message from being sent? ...

Sending Image behind the scenes in androi ?

Hai , I need a solution for , how to send an image behind the scenes i.e; with out users further input ? Can any one help me to sort out this ? thanking you . Srinivas ...

create hyperlink in sms in iPhone

Is it possible to create a hyperlink in an sms in an iPhone? For example, if I want the word 'foo' hyperlinked in HTML then I'll write <a href="http://foo.com"&gt;foo&lt;/a&gt; in a normal situation. If I want to have a certain word in my sms to be hyperlinked to something, is there any way I can do this? Like "I have a <a href="http...

SMS PDU and User Data Length

I'm writing a code for handling SMS PDUs based on all those ETSI GSM documentations. There is one thing I need to ask about. PDU contains a User Data Length field followed by User Data. According to GSM 03.40, the UDL field is the number of septets of user data when the uncompressed GSM default alphabet is used. However, it also says, th...

iPhone In-App SMS MFMessageComposeViewController Auto-Send

I am using Apple's documented methods for In-App SMS today (MFMessageComposeViewController Class Reference) This shows a Compose Message dialog box with the recipients and the body (optionally) pre-filled. However, the user still has to push the send button. The App, Vlingo, seems to have figured out a way to programmatically send f...

In Android is it possible to send sms message to more than one recipient in code?

Using the smsManager class can I send the same SMS to multiple numbers at the same time? Or would I need to do some sort of loop? I want to send the sms from within my app not through the messaging program. ...

How to display android sms inbox

Notification notifyDetails = new Notification(R.drawable.msg,"message received",System.currentTimeMillis()); PendingIntent myIntent = PendingIntent.getActivity(context, 0, new Intent(Intent.ACTION_VIEW), 0); I am using broadcast receiver to notify for incoming message. i am able to display my own notification in not...

Error during sms deletion in Android API.

Hi, I have problem with deletion sms with messageId=0. I can't delete such a message. There is no problem with deletion other messages but first message taken from inbox has always message Id=0 and I can't delete it. I use code below for deletion. Uri SMS_CONTENT_URI = Uri.parse("content://sms"); Uri deleteUri = Uri.withAppendedPath(SM...

creating an address textfield like in apple's sms-app

Hi, I'm writing an app, where I the user has to be able to select multiple adresses. I wanted to solve this in the same way, apple does when you send an SMS to someone. You can enter text and it gets surrounded by a blue bubble for each adress selected. I've already found facebook's tree20-kit, but I can't get it to work because of som...

Creating a SMS Application in Android?

Im creating a SMS Application to send and receive sms.I can send SMS using SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage(phoneNumber, null,message , pi, null); I want to receive SMS and put in my own inbox(how to create this inbox?) and it has to work same like the normal inbox. Bundle bundle = intent.getExtras(); ...

Doubt abt MFMessageComposeViewController and the iPhone simulator

Hi all, I am new to iPhone developement. Here is my question. I would like to do a 'device texting capability' check on my iPhone simulator before I deploy it to my phone. This is the code I wrote in the .m file. This is the function which is called when my SMS button is triggered. Class messageClass = (NSClassFromString(@"MFMessa...

Receive SMS messages in a web application in the US on a hosted server

All, I'm trying to build a simple web application that will allow people to send SMS messages FROM their mobile phone TO my application. I've seen this question asked before: http://stackoverflow.com/questions/526046/receive-sms-messages-by-web-application http://stackoverflow.com/questions/388657/receiving-a-sms-message-in-a-net-appl...

Can I set the Sender ID For CDMA SMS

Is it possible to set the Sender ID alphanumerically to a CDMA device, 'cos I tried, but anytime I use anything other than numerics, the message does not arrive. ...

Is my Windows Phone 7 app restricted to SMSComposeTask?

The documentation is somewhat scarce, but my search has not turned up anything but SMSComposeTask for sending text messages from an app. Will this be the only way to send SMS messages in Windows Phone 7 from an app? Does Android and iOS (4 or previous) place similar restrictions on sending SMS messages from an app? ...