Tagged Questions

Protocol Data Unit. Also know as Concatenated SMS, it is a way to extend SMS messages beyond the usual 160 character data limit.

learn more… | top users | synonyms

4
votes
1answer
2k views

SMS raw pdu in Android

1) Is there any way that I can send a raw SMS PDU from an Android device? Or, 2) are there any classes available that can give me access to the PDU headers (for example TP-DCS) so that I can ...
1
vote
1answer
92 views

SMS sent from j2me not recieved by non-java phones like android and gsm modem

I need to send a pattern like "username,password,0,1,1,1,0,1,0" using sms from j2me app to a gsm modem that is not in my control. It is used to reserve foods. If anyone send a sms to provided number ...
1
vote
1answer
205 views

Is the BroadcastReceiver.onReceive called exactly once per sms?

I have a BroadcastReceiver listenting for android.provider.Telephony.SMS_RECEIVED. I am going to intercept some SMS, so I will abortBroadcast(), but not for all SMS. But when I extract the SMS from ...
1
vote
1answer
362 views

Create PDU for Android

I am currently writing and application, that is sending/receiving SMS messages. For unit-testing purposes I need to create PDU programmatically. Decoding is quite easy: Bundle bundle = ...
1
vote
1answer
1k views

Encoding SMS messages in Android

My problem is that I want to send an SMS message of a certain Class and with a certain encoding. (Class 0 and 7-bit encoding). When checking the Android.Telephony.SmsManager and SmsMessage there is ...
1
vote
2answers
943 views

Incoming SMS - redirect to server via HTTP

I am looking for a windows application which will receive SMS via a GSM modem. The application needs to forward the 'raw' PDU via HTTP Post to a page on our server. The app needs to deal receive a ...
0
votes
1answer
97 views

Send concatenate sms with PDU format with iphone programmatically

is there anyway to send concatenated sms in PDU format in iPhone programmatically? AFAIK android is able to do it. please advice, really need this things clear. Thanks.
0
votes
1answer
98 views

Add UDH for concatenated Unicode SMS

This is the link I learned to send multi-part SMS in PDU, a very good tutorial.But how if I want to send Unicode SMS? From one of the comment from the developer: Yes, the DCS should be 0×08 and ...
0
votes
1answer
516 views

Converting special characters into 7 bit data for a PDU string in C#

I'm trying to create a PDU encoder which requires me to: Convert each char in a string into an ASCII value Convert the ASCII value into 7-bit binary Using this method - Converting 7-bit into 8 bit. ...
0
votes
1answer
317 views

Video MMS from wap downloading as .qcp and .jpeg

I've sent a 3gp video as an MMS, testing the ability to download it from a WAP server. When I attempt to download it from the server it comes in as 2 separate parts. One part is a jpeg and the other ...
0
votes
1answer
172 views

How to change from PDU to text mode in Android?

The SMS of the Android send the message in PDU format. Is there a way to send SMS in text mode?
0
votes
0answers
36 views

Can i attach an image using PDU in android?

Attaching an image in java using PDU ?? Can u help me in this concern.. Thanks
0
votes
3answers
765 views

Parsing SMS PDU

Seems to be that I need to parse PDU byte array received during SMS BroadcastReceiver: @Override public void onReceive(Context context, Intent intent) { Bundle bundle = intent.getExtras(); ...
0
votes
2answers
692 views

Looking for GSM 7bit encode/decode algorithm

I need to Send Short message in pdu mode. Anybody can give me a GSM 7bit encode/decode algorithm?
0
votes
1answer
546 views

Want to Decrypt a PDU format SMS Using C# coding

every one i have developed a application in C# for recieving SMS using AT commands. After recieving the Message content is converting in to PDU format. SO, any one can help me how to Convert the PDU ...
0
votes
1answer
709 views

Decode PDU encoded SMS in PHP

I've searched the web for quite a while now - but nothing usable passed my way :( Do you know a class/library to decode PDU encoded SMS using PHP? Doing all the decode by hand using the official ...
0
votes
1answer
483 views

how to send arabic sms with at-command in text mode (not pdu)

Is it possible to send arabic sms with at-command in text mode (not pdu) and get a delivery report?
0
votes
1answer
434 views

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 ...
0
votes
2answers
1k views

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 ...
0
votes
2answers
1k views

Please recommend PDU SMS format code or library for .NET or C++

I have been searching a lot for a chunk of code, or a library to format SMS messages in PDU format and had little luck. They were either huge monsters with terrific dependencies on everything way ...
0
votes
0answers
469 views

how to parse byteArray containing mms using java

I have a byteArray containg MMS . I want to parse it, means I want to separate MMS header and mime parts(images/sound/video). I have no idea how to do it, i have read WAP WSP Spec for decoding MMS, ...
0
votes
2answers
660 views

PDU to text conversion in Java

i need help in converting sms in PDU mode to text mode in Java.