Questions tagged [pdu]

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

In the cellular phone industry, mobile phones and their networks sometimes support concatenated short message service (or concatenated SMS) to overcome the limitation on the number of characters that can be sent in a single SMS text message transmission (which is usually 160). Using this method, long messages are split into smaller messages by the sending device and recombined at the receiving end. Each message is then billed separately. When the feature works properly, it is nearly transparent to the user, appearing as a single long text message.

http://en.wikipedia.org/wiki/Concatenated_SMS

117 questions
0
votes
0 answers

Java SMPP library from scratch

I am a newbie at java somewhat and what I would like to do is submit a series of hex values to and smpp simulator by ActiveXperts. However with the below code I am unable to even see data being sent via wireshark to the simulators port which means…
sqwale
  • 554
  • 3
  • 24
0
votes
2 answers

PDU to text conversion in Java

i need help in converting sms in PDU mode to text mode in Java.
IndexController
  • 589
  • 1
  • 10
  • 18
0
votes
1 answer

Encoding/Decoding PDU 7bit septets GSM long messages

I'm looking for Encoding/Decoding algorithm. I have tried this: http://codeproblem.hamaraquetta.com/articles/languages/81-net-framework/76-encoding-sms-in-pdu-format-in-net?showall=&start=1 and no luck. :( Here is what I'm trying This is the…
hackp0int
  • 4,052
  • 8
  • 59
  • 95
0
votes
1 answer

Tracker PDU Android Parsing

I am receiving a PDU string from tracker. And i want to parse that and get information in that string. …
Zeeshan Chaudhry
  • 842
  • 2
  • 15
  • 31
0
votes
3 answers

How to get inbox sms in pdu format in android

Can someone let me know if there is a way to get the inbox sms in pdu format?
0
votes
1 answer

Variable binding in SNMP PDU

I am developing a SNMP utility in C# which can fetch data from a specified device OID using the SNMP version 1 packet format. I have almost completed it but their is a problem that I am not able to resolve. I am successfully querying one variable by…
-1
votes
1 answer

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 formated SMS to normal string. Thanks in…
-1
votes
1 answer

NodeJs-SMPP: ETIMEDOUT error

I'm using node-smpp. App doesn't connect smpp server every time for sending sms, just connects one time and after 2-3 minutes app reconnects again. App works fine and sms sent. But sometimes in 2-3 days or 1-2 weeks occur an error 'ETIMEDOUT' and…
Ezio
  • 1
  • 1
-1
votes
2 answers

Wonderful string content check

I'm using this code and it retrieve incoming message successfully: Bundle bundle = intent.getExtras(); Object[] object = (Object[]) bundle.get("pdus"); SmsMessage smsMessage = SmsMessage.createFromPdu((byte[]) object[0]); String message =…
Mohammad Lotfi
  • 369
  • 5
  • 16
-2
votes
1 answer

where is the ERROR in my code " Out of bounds Problem"

i am trying to create a decoding PDU method FOR "GSM" modems (ussd messages) all works fine but i have an error that occues which says"index out of Bounds" ,even if i fix it in one place it occures in other places i hope you can guide me to the…
-3
votes
1 answer

Does forwarded SMS contain the original sender's tel number?

Let's say user1 received an SMS from tel1. Then he forwarded it to user2. Will user2 be able to extract tel1 from the SMS he received?
LA_
  • 19,823
  • 58
  • 172
  • 308
-6
votes
1 answer

Error C2014; Visual Studio 2012

I found this code for convert string to pdu (septet to octet char) #include #include #include #include std::string toPDU(const std::string &original) // Converts an ANSI string to PDU format { if…
1 2 3 4 5 6 7
8