4

Related to Detect an MSISDN (mobile number) with the browser

What SMPP parameters should I use for sending WAP PUSH SMS?

Thank you

Victor
  • 41
  • 3

1 Answers1

0

You must set:

DATA_CODING = 245 (0xf5)
ESM_CLASS = 64  (0x40)

And in PAYLOAD you combine message and wap url following binary WSP standard:

WSP Specification

Marvin
  • 598
  • 5
  • 14
  • Hi Marvin, thank you for your answer. What do you refer with "PAYLOAD"? regarding data coding and es_class, I know how using them, but I don't know how to introduce URL. – Victor Nov 18 '19 at 21:25
  • 2
    In SMPP you can define message as MESSAGE (mandatory) or PAYLOAD (optional tlv field). You encode message and url in binary form following WSP protocol (link above) and that you provide in PAYLOAD field of SMPP. Example for WSP providing URL you can find here: https://wiki.wireshark.org/Wireless_Session_Protocol – Marvin Nov 20 '19 at 00:46