Questions tagged [wml]

WML is a markup language intended for devices that implement the Wireless Application Protocol (WAP) specification.

Definition (Wikipedia):

Wireless Markup Language (WML), based on XML, is a markup language intended for devices that implement the Wireless Application Protocol (WAP) specification, such as mobile phones. It provides navigational support, data input, hyperlinks, text and image presentation, and forms, much like HTML (HyperText Markup Language). It preceded the use of other markup languages now used with WAP, such as HTML itself, and XHTML (which are gaining in popularity as processing power in mobile devices increases).

Program Structure:

An example of the basic structure of a WML program:

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
          "http://www.wapforum.org/DTD/wml12.dtd">

<wml>
  <card id="one" title="First Card">
    <p>
      This is the first card in the deck
    </p>
  </card>
  <card id="two" title="Second Card">
    <p>
      Ths is the second card in the deck
    </p>
  </card>
</wml>

More reading:

67 questions
0
votes
1 answer

xml to R Attributes

I have a problem when extracting attributes from xml to R. I have the xml file as follow: - + - - + - +
MVachelard
  • 59
  • 4
0
votes
1 answer

Spring MVC and WML web page?

is it possible to contruct and use a WML page instead of a normal html page to render my views that contain a form? i could not find any examples on how to achieve this and i could not even find the "form" tag in WML. Instead, from my understanding…
Jono
  • 17,341
  • 48
  • 135
  • 217
0
votes
1 answer

UserAgent detection in WML Script

I'm developing a WAP site for J2ME and low end Symbian phones. When the site is opened on non WAP browsers such as Chrome or Safari, the raw WML code is displayed. I wanted to know if there's a way in WML to check the browser or user agent on which…
Sahil Khanna
  • 4,262
  • 8
  • 47
  • 72
0
votes
1 answer

How to redirect desktop site for wap and SEMC browser to mobile site using php

I am trying to redirect desktop site for Wap and SEMC broswers to mobile site using php. I am using this code but it is not working. Edit - No errors are coming. Only it is not redirecting. User agent strings are like this - Micromax X267/R2AE…
user20152015
  • 344
  • 2
  • 23
0
votes
1 answer

How can I use a wml script in php files?

I'm having problems using a wml script in my wml site, when I try to call a function the browser download the wmls file. My server has all the mime types for wml this is an example of my wml code embedded in php file
0
votes
1 answer

WAP Colored Images

I'm beginning with WML development, but I hate that the only option that we have for images are the WBMP format, that is only grayscale, then I want to know if there is any way to have colored images using WAP 1.x(not the new 2.x versions of it).
Nathan Campos
  • 28,769
  • 59
  • 194
  • 300
0
votes
3 answers

What's different between HTML and WML/WAP?

I checked the source of a few WAP sites, but doesn't find anything different from a normal HTML page. Can you name a few detailed points?
user198729
  • 61,774
  • 108
  • 250
  • 348
0
votes
1 answer

Submit Form Equivalent To WML

I'm playing a little bit with WML with PHP, then I want to know what is the equivalent of this on WML 1.0:


Nathan Campos
  • 28,769
  • 59
  • 194
  • 300
0
votes
1 answer

WML And Downloads

I'm now playing with WML and WMLScript, but I'm doing a site that will have some content to download(some txt, doc, bmp, mpg, avi and jpg files), but some of my friends(that never developed in this language, just used the technology on the…
Nathan Campos
  • 28,769
  • 59
  • 194
  • 300
0
votes
2 answers

How to test WML script program?

Can we test WML scripts on the PC? Is there any emulator for testing it?
Ramesh
  • 1
0
votes
1 answer

Mobile Web development: Differences between XHTML, XHTML-MP, WML and HTML5

I am aware of what each of the mark up languages does but what I am unsure about is the difference between them as they all seem very similar. I don't mean in terms of syntax, I mean the role of each/ benefits etc.
user3287264
0
votes
1 answer

Getting cellphone ID via WAP

I have a Motorola i475w and I want to do a WAP website that gets my cellphone's ID when I access it. The website uses PHP and WML. How can I get cellphone's ID using WML/PHP?
0
votes
1 answer

PHP MIME type application/vnd.wap.xhtml+xml

I have added the following to my .htaccess file # MIME Types for WAP AddType text/vnd.wap.wml .wml AddType image/vnd.wap.wbmp .wbmp AddType application/vnd.wap.wmlc .wmlc AddType text/vnd.wap.wmlscript .wmls AddType application/vnd.wap.wmlscriptc…
Liam Sorsby
  • 2,912
  • 3
  • 28
  • 51
0
votes
2 answers

Testing WML documents without Nokia

Are there any testing platforms out there for testing WAP/WML pages besides that provided by Nokia? I have tried to get ahold of the Nokia Mobile Internet Toolkit but it's too tied down with authentication and certificates etc. Nokia software is…
Steven
  • 691
  • 3
  • 10
  • 26
0
votes
1 answer

Configuring Wamp Server to Run WML Pages

my server is wamp 2.0 (apache 2.2.11), I am trying to run WML page, but each time the emulator show me a download dialogue. I have tried to add the WML MIME Types as below and restarted the server: text/vnd.wap.wml wml text/vnd.wap.wmlscript…
Hany
  • 1,146
  • 4
  • 18
  • 26