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

modem return ERROR for pdu

I'm sending this PDU to GSM modem and the modem returns…
0
votes
0 answers

Android raw PDU

As I think method in SmsManager: copyMessageToIcc(byte[] smsc, byte[] pdu, int status) store raw PDU in Icc. How to send message stored in Icc? The same question is for method: createMessageListFromRawRecords(List records)
theWalker
  • 2,022
  • 2
  • 18
  • 27
0
votes
1 answer

How to send a long(160 or more characters) text message?

Everyone I am trying to write a code in c# where I could send a text message that has 160 or more characters using the GSMComm libray. What I've done is I divided my message into parts/message and send them to my clients. The problem is, the clients…
Dac
  • 210
  • 3
  • 19
0
votes
0 answers

Use Java Sockets to connect a DNS server and download a picture from internet

I'm making a project in java using Sockets that consist in connect a DNS server having a url and receive the IP, but that IP will be from a host where the picture is hosted in internet (doesn't matter what picture) and the last step is to get that…
0
votes
1 answer

PDU SMS message not receiving

I am using wavecom gsm modem and implemented the logic to send sms in pdu mode. But for some operators I am getting : +CMGS response but not receiving the message. And with few more operators like idea, airtel, vodafone etc, with few SIMs I am…
user12345
  • 357
  • 2
  • 3
  • 11
0
votes
1 answer

Parse SMS PDU on go

Is it possible to parse SMS PDU using just golang executing AT command AT+CMGF=0 OK AT+CMGL=4 +CMGL: 0,1,,26 0791361907002039040C9136198748701300005150713220052308C8303A8C0EA3C3 is there way to decode this in…
kudarap
  • 631
  • 3
  • 6
  • 16
0
votes
1 answer

Reading Multipart SMS with AT+CMGL using Wavecom modem

I try to read multipart sms in PDU mode. The message was in 3 parts Below are PDUs I got by using command AT+CMGF=0 and…
June Leow
  • 102
  • 1
  • 16
0
votes
1 answer

convert a binary file to SQLite database

i have a binary file of mobile, in this binary file msgs and contacts of phone-book are stored i have extracted msgs from it but now have to extract contacts saved in phone book.in this binary file the data is stored in sqlite format as i found this…
sms247
  • 4,404
  • 5
  • 35
  • 45
0
votes
1 answer

issue in send multi part sms

Please help me. Here is my PDU Part 1 …
Umer
  • 1
  • 2
0
votes
1 answer

Will concatenated sms be delivered always in the order sent out by a GSM handset?

As I know concatenated sms are split in GSM handset and delivered to network. Does GSM standard talk about order of these packets? Will it be always sent in order? That is first sequence packet first and next later? My questions regarding this. 1.…
Nasir
  • 708
  • 2
  • 11
  • 28
0
votes
2 answers

Is there any good and stable online SMS to PDU converter?

I'm looking for a nice online converter which could work with several modems. The problem i'm dealing with - i can't send sms in pdu mode (with Cinterion BGS-2T). Tried with my own library (still working on it) and several online converters such…
Looongcat
  • 156
  • 1
  • 7
0
votes
1 answer

Sending sms in pdu mod gets cms error 304

I'm trying to send sms using huawei e173 gsm modem. Everything works fine in text mode, but I can't figure out how to send sms in pdu mode. I have tried to send simple message that will say "hellohello". This is my message format in Qt designer…
user2880783
  • 145
  • 6
  • 18
0
votes
1 answer

Using SNMP4J to retrieve MIB info over TCP instead of UDP

Using the SNMP4J library I am able to successfully retrieve information from multiple agents using SNMP over UDP. I am running into a situation where I need to retrieve information from an agent using SNMP over TCP. The SNMP4J library provides a…
Casey Murray
  • 1,582
  • 17
  • 21
0
votes
1 answer

Android SmsMessage country code

I'm currently working on a app to blacklist SMS from a specific country, I already created my BroadcastReceiver class, which start a service to compare the phone number to the ones stored in the database. My database contains mobile country code,…
ex0ns
  • 1,116
  • 8
  • 19
0
votes
2 answers

Python - Decode GSM SMS message in PDU

I'm receiving a PDU like message, but I'm only receiving the message "C824" PDU example, 040C9119898392752300008010610014412202C834 04 - first octet 0C - phone number length 91 - phone number type 198983927523 - phone number 00 - protocol…
André
  • 24,706
  • 43
  • 121
  • 178