WAP Re-direct

WAP Re-direct SearchSearch
Author Message
steveb
Posted on Thursday, August 07, 2003 - 10:51 am:   

Hi,

Can the WAP3GX be configured to provide WAP re-direction to another WAP GW?

Bryce Norwood - NowSMS Support
Posted on Thursday, August 07, 2003 - 04:37 pm:   

No, it can't.

We did almost implement this at one time, but almost doesn't count.

It is a pretty simple process. If you wanted to do this yourself, as a simple hack, you could listen for any UDP packets, and always reply back with the WAP redirect response:

12 xx xx 03 40 C4 00 yy yy 04 zz zz zz zz

xx xx is the transaction id. Take the first two bytes of the incoming UDP request and copy them here, but OR the first bit with 0x80.

yy yy is the port to redirect to in network order.

zz zz zz zz is the IP address to redirect to.

-bn