WAP Push

Smpp v3.4 client

Moderator: alt

Locked
alt
Site Admin
Posts: 988
Joined: Tue Apr 25, 2006 9:45 am

WAP Push

Post by alt » Fri Oct 10, 2008 6:11 am

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.
Beatnyama
Posts: 7
Joined: Fri Dec 12, 2008 11:31 am
Location: Windhoek Namibia

WAP Push

Post by Beatnyama » Mon Jan 19, 2009 2:55 pm

WAP push is working perfectly well, although had to make some minor changes to the code to suit Visual Basic.
There's no limit to the amount of things you can do, provided you have enough processor power!!
Locked