Can anyone kindly explain how to send a concatenated WAP PUSH SMS? I can send an SI that spans just one message, but I haven’t figured out how to send one that spans multiple messages
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you send a WAP Push message with a SMS Bearer, you’ve got a SMS with a User Data Header. This User Data Header looks like
0605040B8423F0and contains so to say source and destination port for the WAP Push App in your phone. 0B84 is the destination port number (2948), 23F0 is the source port number (9200).To send a WAP Push longer than 133 Bytes you have to add a Concatenation Header to the UDH, the UDH will then look like
0B00033F020105040B8423F0for the first SMS and0B00033F020205040B8423F0for the second SMSSplit the remaining Wap-Push data in 128 Byte Chunks and append them to the UDH.
The glory details are part of the 3GPP Specification 23.040 found at http://www.3gpp.org/ftp/Specs/html-info/23040.htm
hth cheerio
Steve