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
1 answer

Why use reverse nibbled ​in decimal-octets in SMS PDUs?

I am studying for SMS PDU. However, I do not know why the SMS PDU transmits the phone number and the like by reverse nibbled. (012345 to 103254) Why does it work like this?
김어진
  • 3
  • 1
0
votes
1 answer

How to send SMS with more then 70 characters

My code working perfectly if the SMS messages to be sent has less than 70 characters. I want to send messages with between 70 to 200 characters per message. using GsmComm.GsmCommunication; using GsmComm.PduConverter; using GsmComm.Server; using…
Fahad Khan
  • 22
  • 2
0
votes
1 answer

PDU and UCS2 in java ussd

I use SIM-900 in my device. I need to get a balance from sim card. I use this command and get this result. Command Modem: AT+CUSD=1,"*555*1*2#" result: +CUSD:…
Rasoul Miri
  • 11,234
  • 1
  • 68
  • 78
0
votes
0 answers

How to restore a long SMS (Text) message from multiple short text messages stored in Android database?

I have a ContentObserver listening content://sms/inbox. When I send long SMS message from one Android emulator to another Android emulator, this ContentObserver fires multiply (depending on the number of short sms messages in the long sms message).…
isabsent
  • 3,683
  • 3
  • 25
  • 46
0
votes
2 answers

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?
Leo
  • 1,947
  • 2
  • 20
  • 37
0
votes
0 answers

Qt and GSM encoding

Hi i am developping an open source sms application and i am using Qt. But now i have various problem with the encodings. I am using this library for various pdu encoding and decoding https://sourceforge.net/projects/pdulib/ In gsm there 3 main…
M-Jeff
  • 23
  • 1
  • 1
  • 4
0
votes
1 answer

Why is it error when I use the "at command "in the C#, but does the command work properly in the hyper terminal?

this is my code in c# : string pdu=SubmitPdu.GetPdu("destNumber","Message","ServiceNumber"); SerialPort comport = new SerialPort(); comport.PortName = "com21"; comport.BaudRate = 921600; comport.Parity = Parity.None; comport.StopBits =…
0
votes
2 answers

Send Concatinated SMS message using EasySMPP API (How to Add UDH Info)

i am using c# API called EasySMPP, it is pretty great in sending single SMS, it is also good in send large SMS, but the recipient get the messages separately, which is not meaningful, what i am looking is how to modify the PDU so that i can append…
0
votes
0 answers

Gsm PDU to Text decoding Algorithm not working in stm32

I have written a PDU to Text decoding algorithm in C which compiles and runs perfectly with dev C or code blocks for more than one messages(where i provide the PDU messages manually). Now i have applied the same algorithm to stm32f103rc connected…
Devjeet Mandal
  • 345
  • 1
  • 4
  • 23
0
votes
1 answer

PDU Response Parameters

I'm creating a SMPP server using Node.js. It's all okay, but now, I have to send to client a custom parameter inside pdu.response(), like 'message_id'. If I do: session.send(pdu.response({comand_status: 999})); It works, but if I do…
0
votes
0 answers

Determining if SMS is binary or text

I have a default SMS messenger Android app that will receive binary and plain text messages. I need to determine if the received SMS is in binary or text to know how to send a message back to the original sender. On 5.1 I can check the MessageBody…
DarthVadar123451
  • 619
  • 1
  • 6
  • 14
0
votes
3 answers

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 documentation scares me a bit. There seem to be…
glutorange
  • 993
  • 1
  • 10
  • 17
0
votes
2 answers

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?
mahdi
  • 16,257
  • 15
  • 52
  • 73
0
votes
1 answer

Unrelated packets in TCP communication capturing results

I am using Wireshark to capture TCP communication packets in my experiment (using Mininet Simulation). The experiment involves a client (10.0.0.2) who requests HTTP page from the server (10.0.0.1). The following screenshot shows the capturing number…
Frank
  • 25
  • 6
0
votes
1 answer

How to Encode a string to PDU using GSMComm

C# 6.0 Huawei modems use PDU for USSD, I need a c# code or any library to Encode plain text to PDU and decode PDU to plain text ex: *222# ==> 2A994C3602 and vice versa. Thanks.
user1104916
  • 103
  • 1
  • 11