Discuss WAP Push Services in the Mobile Programming forum on Dev Shed. WAP Push Services Mobile Programming forum discussing development for mobile technologies from basic mark-up languages
such as WML and XHTML MP to server generated code and applications. Widsets, SMS, gateway and server
set up are also covered here.
Posts: 10
Time spent in forums: 27 m 21 sec
Reputation Power: 0
Quote:
Originally Posted by agent0091
what is wap push?
A WAP Push is basically a specially encoded message which includes a link to a WAP address. WAP Push is specified on top of WDP; as such, it can be delivered over any WDP-supported bearer, such as GPRS or SMS.
In this way, the WAP Push directs the end user to a WAP address where particular content may be stored ready for viewing or downloading to the handset. The address could be a simple page or multimedia content (e.g. polyphonic ring tone) or a Java application. Using WAP Push, one can make it easier for end users to discover and access new mobile services.
You need to have a WAP Push software in order to send a WAP Push message, there's an example WAP Push Gateway.
Last edited by jabba_29 : August 25th, 2005 at 08:27 PM.
Reason: Fake signature removed
Posts: 605
Time spent in forums: 4 Days 5 h 58 m 43 sec
Reputation Power: 68
Why create your own gateway unless you have large budgets, lots of co-workers for brainstorming, network connectons and leased lines or gsm modems, time, more time and more money when there are loads out there that exist already that you can plug into? Google is a friend, seek and find.
A WAP Push comes in two kinds, SI (service indication) and SL (service loader) the latter is not so well supported on Nokia handsets and most other manufacturers who have half an ounce of decency as it will auto load the link sent, the SI just sends an indication to the handset to say 'Hey check out this WAP link'
Service loading w/p can too easily be used to screw random people over, imagine a premium sms service that can be opted into by a WAP site with hidden params in the query string, a SL push could be sent, the subscriber could opt into to something without even knowing so it's a bit out of bounds in that way..... I get enough dodgy WAP push messages sent to me by spammers that I can access to get ripped off. Widespread SL would be a con-artist's or data-munger's best friend.
Push SI is the way to go and there's dozens of good gateways out there to plug into. Why develop your own at time and expense when there's better ones out there already for a reasonable fee?
Posts: 10
Time spent in forums: 27 m 21 sec
Reputation Power: 0
Quote:
Originally Posted by andymoo
Why create your own gateway unless you have large budgets, lots of co-workers for brainstorming, network connectons and leased lines or gsm modems, time, more time and more money when there are loads out there that exist already that you can plug into? Google is a friend, seek and find.
A WAP Push comes in two kinds, SI (service indication) and SL (service loader) the latter is not so well supported on Nokia handsets and most other manufacturers who have half an ounce of decency as it will auto load the link sent, the SI just sends an indication to the handset to say 'Hey check out this WAP link'
Service loading w/p can too easily be used to screw random people over, imagine a premium sms service that can be opted into by a WAP site with hidden params in the query string, a SL push could be sent, the subscriber could opt into to something without even knowing so it's a bit out of bounds in that way..... I get enough dodgy WAP push messages sent to me by spammers that I can access to get ripped off. Widespread SL would be a con-artist's or data-munger's best friend.
Push SI is the way to go and there's dozens of good gateways out there to plug into. Why develop your own at time and expense when there's better ones out there already for a reasonable fee?
SL doesn't work on many phones, e.g. Sony Ericsson. Many gateways use bulk SMS, which is often banned or filtered by local carriers.
Posts: 69
Time spent in forums: 1 h 1 m 54 sec
Reputation Power: 12
You don't need to create a gateway to send SMS or WAP Pushes to a mobile phone. You can use an aggregator to send the message. Using a aggregator is nice as you post them some XML and they send the message to what ever the local mobile networks are and then the message gets delivered. You also get better feed back on why a message may have fail through an aggregator (personal opinion). Two aggregators I've used in the UK are WIN (www.winplc.com) and Essendex. You can also send bulk SMS through an aggregator, one of the clients of the company I work for regularly sends out 10-20,000 messages.
Now going through an aggregator provides two possible ways to do a WAP push (depending on the aggregator). The first approach is where you need to encode the message in to hex code and pass it on inside the XML. A nice tutorial/ sample code to use can be found at http://www.codeproject.com/csharp/wappush.asp, this is what I've used. The second way is the aggregator may have a way for you to pass the information to them and they would do the encoding for you. Either way the user gets a WAP push that has a link in it.
Hope this is of some help, I know it doesn't answer your question about setting up a gateway. Try looking at forum.nokia.com as Nokia has some nice tools you can download for free and I think one of them is a gateway.
__________________
Humble Seeker
The longest journey starts with the smallest step, and knowledge is the longest journey of all.
Posts: 1
Time spent in forums: 9 m 34 sec
Reputation Power: 0
Quote:
Originally Posted by andymoo
Why create your own gateway unless you have large budgets, lots of co-workers for brainstorming, network connectons and leased lines or gsm modems, time, more time and more money when there are loads out there that exist already that you can plug into? Google is a friend, seek and find.
A WAP Push comes in two kinds, SI (service indication) and SL (service loader) the latter is not so well supported on Nokia handsets and most other manufacturers who have half an ounce of decency as it will auto load the link sent, the SI just sends an indication to the handset to say 'Hey check out this WAP link'
Service loading w/p can too easily be used to screw random people over, imagine a premium sms service that can be opted into by a WAP site with hidden params in the query string, a SL push could be sent, the subscriber could opt into to something without even knowing so it's a bit out of bounds in that way..... I get enough dodgy WAP push messages sent to me by spammers that I can access to get ripped off. Widespread SL would be a con-artist's or data-munger's best friend.
Push SI is the way to go and there's dozens of good gateways out there to plug into. Why develop your own at time and expense when there's better ones out there already for a reasonable fee?
hi andymoo
i'm new to this i heard about si and sl but i couldn't able to find any sample.I've to code it in short span can u help me
Posts: 19
Time spent in forums: 1 h 37 m 28 sec
Reputation Power: 0
Quote:
Originally Posted by visualtron
A WAP Push is basically a specially encoded message which includes a link to a WAP address. WAP Push is specified on top of WDP; as such, it can be delivered over any WDP-supported bearer, such as GPRS or SMS.
In this way, the WAP Push directs the end user to a WAP address where particular content may be stored ready for viewing or downloading to the handset. The address could be a simple page or multimedia content (e.g. polyphonic ring tone) or a Java application. Using WAP Push, one can make it easier for end users to discover and access new mobile services.
You need to have a WAP Push software in order to send a WAP Push message, there's an example WAP Push Gateway.
Posts: 1
Time spent in forums: 14 m 13 sec
Reputation Power: 0
sms gateway
Quote:
Originally Posted by Efreet
Hi
[question in basic]
i would like to know how to send a service message to a mobile.
[question in advanced]
i would like to know how to create a gateway to send a service message to mobile devices.
Thanx
I recommend you Wire2air.com sms Gateway services which also provides wap push messaging tool for mobile devices. It is involved in creating mobile websites with sms gateway enabled services. Wire2Air SMS Gateway has offered innovative text messaging solution for both mobile marketing and text advertising companies. It has offered fast and quality text messaging service through web or computer to cellular networks.
Posts: 1
Time spent in forums: 17 m 7 sec
Reputation Power: 0
sms gateway
Has anyone used txtimpact.com mobile marketing services. I've to create a website for my online dating services and i want to include sms alert feature in that, how and where to start. Any another site to start?