WAP Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreWAP Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
  #1  
Old August 31st, 2000, 03:00 AM
ursus ursus is offline
unemployed dev junkie :(
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2000
Posts: 32 ursus User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
What do i need the WAP Gateway for?
So far i simply used Apache configured to send an apropriate mime(content) type header with all .wml documents (or specified the Content-type in dynamic documents)and it worked fine.
am i missing something important?

Reply With Quote
  #2  
Old September 26th, 2000, 09:36 PM
astrix astrix is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: Chicago, IL USA
Posts: 48 astrix User rank is Corporal (100 - 500 Reputation Level)astrix User rank is Corporal (100 - 500 Reputation Level)astrix User rank is Corporal (100 - 500 Reputation Level)astrix User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 11
Send a message via ICQ to astrix
i dunno as far as i know i use..

<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">

and that works just fine i only do it because its in my wap editor though.

Reply With Quote
  #3  
Old October 9th, 2000, 11:41 AM
Mikecounsell Mikecounsell is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2000
Posts: 1 Mikecounsell User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
You, as a wml content developer probably do not need a gateway, however, there does need to be a gateway somewhere between your site and real wap devices. This is because real wap devices only accept wmlc which is the compiled version of wml. In practise, the gateway is usually sat with the ISP. IE the teleco provides this so u don't need one. Make sense?

Reply With Quote
  #4  
Old December 6th, 2000, 10:10 PM
preethven preethven is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2000
Posts: 7 preethven User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Again, if you are using an emulator on the PC, you might not see the relevance of the Gateway...as the emulator does the job of the Gateway as well as that of the user agent(handheld device). As Mikecounsell suggested, you need a gateway to sit between your web server and your user agent...to translate the agent's WAP requests into HTTP requests, and send it to the HTTP server, which in turn will send HTTP responses which the gateway converts into WAP responses and passes them on to the user agent. In some cases, they also provide cookie support!

Preetham

Reply With Quote
  #5  
Old January 27th, 2001, 04:21 AM
justin368 justin368 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 1 justin368 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via Yahoo to justin368
Question

So what if my isp doesnt have a wap gateway? is there anyway i can set one up? where can i get one and how much??

Reply With Quote
  #6  
Old January 27th, 2001, 01:35 PM
ursus ursus is offline
unemployed dev junkie :(
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2000
Posts: 32 ursus User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Thumbs up WAP gateway = WAP device ISP ?

As far as I understand the WAP Gateway piece would sit on the WAP device ISP's network and translate any requested HTTP/wml content from the internet to WAP/wmlc and send it to the WAP device. I've been developing for wireless users for about 6 months, and served it from an Apache server and never had to wory about a WAP Gateway. I have two WAP devices (not emulators) and that's how I test my applications. I just point my WAP to the URL and the rest is seamless. Any comments?

Reply With Quote
  #7  
Old February 5th, 2001, 04:59 PM
consult consult is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2001
Posts: 1 consult User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Cool

As a content provider you need not worry about the Gateway, that's correct. WAP Gateway is to a mobile user, as an ISP is to a home user. So Sprint, or ATT, etc. ought to be the WAP Gateway to their subscribers.
As for the WMLC issue, this is really quite interesting, and important!
Because mobile devices are lightweight and hence have small batteries, they do not carry enough energy to power a decent microprocessor. Hence they can NOT perform the usual "error correction/interpretation" that your standard browser uses when presenting an HTML document. I'm sure you realize that very few HTML documents out there really adhere to the W3C's standards. When it comes to WML, however, adhering to the standard is an absolute MUST. If there's even the slightest error in your code, it will never reach the mobile client.
Unfortunately, the WAP emulators available for your PC/Mac generally don't implement the full WML standard correctly. So you really need to test your stuff using an actual WAP device (which will automatically guarantee that you're going through a Gateway, btw).
Also, because of small screen size, keep everything super streamlined and emphasize a logical layout. But I'm sure you're aware of this already.
WMLC is the tokenized version of WML. Basically the WAP Gateway reads your WML document, parses it, validates it, converts it to WMLC (WMLC uses a much simpler "syntax", it just looks like a stream of numbers and letters) and then sends this to the WAP device. Phew. WMLC is like a set of instructions to the WAP device -- it has specific tokens to identify each valid WML element (<card> , <deck>, etc.).
Check out some WAP site (WAPFORUM.org, I think) for more on this or just do a google on [token wml wmlc].

Sorry to be so wordy. Good luck.
Me out.

PS: I still have issues with setting the right content type on my server. Any tried and true solutions (with details!) would be of great interest.

Reply With Quote
  #8  
Old February 10th, 2001, 08:54 PM
Adrian2 Adrian2 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2000
Location: London, England
Posts: 251 Adrian2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
No, you aren't missing anything important. If you can read your WML pages on a WAP phone, everything's fine. If you want to emulate WAP in your browser rather than using a local emulator, try http://www.yospace.com/

Reply With Quote
  #9  
Old March 18th, 2001, 07:20 AM
x_alex x_alex is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2001
Posts: 2 x_alex User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Help on how to do what you have.

Quote:
Originally posted by ursus
What do i need the WAP Gateway for?
So far i simply used Apache configured to send an apropriate mime(content) type header with all .wml documents (or specified the Content-type in dynamic documents)and it worked fine.
am i missing something important?


Could you tell me how you did this please...I did what you did and even though its loading and giving me a ready response, nothing appears on my emulator! I thought I needed a WAP gateway.
Specs: I am running Apache on win 98 2nd ed. and using an emulator and toolkit by NOKIA.
Thanx

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreWAP Programming > WAP Gateway ???


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway