Page 1 of 1

WAP Push

Posted: Fri Oct 10, 2008 6:11 am
by alt
Version 2.5 presents ability to send WAP Push message.
http://www.inetlab.ru/Download/SmppClient.zip

WAP Push messages are widely used for pushing polyphonic ringtones and wallpaper images to mobile phones.

Example of usage:

SubmitSm[] packets = client.PrepareWapPush(
0x90,
byte.Parse(tbSrcAdrTON.Text),
byte.Parse(tbSrcAdrNPI.Text),
tbSrcAdr.Text,
byte.Parse(tbDestAdrTON.Text),
byte.Parse(tbDestAdrNPI.Text),
tbDestAdr.Text,
"http://www.google.com",
"Google");
client.SubmitAsync(packets);

this code will send a message with content:

<si>
<indication href="http://www.google.com" action="signal-medium">
Google
</indication
</si>

Please test this new feature and let us know how it works with your SMSC.

WAP Push

Posted: Mon Jan 19, 2009 2:55 pm
by Beatnyama
WAP push is working perfectly well, although had to make some minor changes to the code to suit Visual Basic.