| View previous topic :: View next topic |
| Author |
Message |
aclhkaclhk
Joined: 29 Jan 2008 Posts: 1
|
Posted: Tue Jan 29, 2008 9:28 am Post subject: sending raw pdu |
|
|
pls advise how to send raw pdu.
we have the following ems message in pdu format:
***** raw pdu *****
pdu header: 0C0A040005F5010A04000E1009
message data: 68656C6C6F7777772E6D6D7373646B2E636F6D
data: 0C0A040005F5010A04000E100968656C6C6F7777772E6D6D7373646B2E636F6D |
|
| Back to top |
|
 |
Leon
Joined: 11 Jul 2007 Posts: 408
|
Posted: Tue Jan 29, 2008 12:17 pm Post subject: |
|
|
Hi,
It is not possible to send all the PDU data, but it is possible to send this EMS message by sending only the user data header and EMS message data. This can be done like this:
objGsmOut.MessageRecipient = "+25422687455"
objGsmOut.MessageType = objConstants.asMESSAGETYPE_DATA_UDH
objGsmOut.MessageData = "<UDH HEADER><USERDATA>"
For instance:
objGsmOut.MessageData = "231121036DA3725B9484D9F9963C58105C672936EE9B55C6B5CA93D058E3608F4782CA60"
Hope this helps |
|
| Back to top |
|
 |
|