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
2
votes
1 answer

Implementing a WAP site using ASP.NET-MVC

We plan on implementing a WAP site using ASP.NET-MVC. Has anyone any experiance of this? Are there any Gotchas? We will also be implementing a "standard" web site for browsers. Would it be possible to have a single set of Models and Controllers, and…
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
2
votes
1 answer

asp.net mvc keeps overriding text/html content-type with .wml

I'm developing an website which is to be viewed on mobile (cellphone) devices. I'm just using plain HTML 4.01, nothing special at all. The pages render fine on all the mobile browsers we've tested, except for Nokia Series 40 1-5th editions. On…
keithl8041
  • 2,383
  • 20
  • 27
2
votes
1 answer

Testing WML on mobile browsers

I am developing a mobile web application which is implemented in WML (to minimize roundtrips to the server). I've tested the application on the following browsers: IE for Windows Mobile 5 IE for Windows Mobile 6 Opera Mobile Nokia Series 40 web…
Quassnoi
  • 413,100
  • 91
  • 616
  • 614
1
vote
1 answer

How to unmarshal WML / xhtml into java ojbjects?

Is it possible to unmarshal WML or xhtml in java objects so that i can query the elements and save the values to DB? I would like to unmarshal WML/Xhtml from this link to java objects so that i can query the objects using JAXB.
App Work
  • 21,899
  • 5
  • 25
  • 38
1
vote
0 answers

symbol used in word is converted to normal text?

In my word I have a symbol (alpha),style as symbol and font size 11. When I read the word in .Net using openxml(wml), the symbol is changed to normal text a. How to handle this? Input criteria of .70.
Abul Hasan
  • 21
  • 3
1
vote
1 answer

watchman watch run on wml url not working

I am using mac os version 13+ (Venture) I am trying to set up "wml" in my local development environment. I finding the solutions in Stack Overflow and some random websites. I did not find the very specific answer or very strong answer. My problem is…
Wai Hyn
  • 11
  • 1
1
vote
1 answer

React-native yarn workspaces/wml don't load imported modules that contains an installed package

I tried to implement react-native with workspaces to share the business logic across mobile and web application, it works well on the web, but it doesn't work or even load files on react-native. I ended up using wml but it cannot load a file from…
Ahmed Fouad
  • 60
  • 1
  • 6
1
vote
1 answer

Asp.net website targeted to WAP/WML-only phone browsers

How should I create/configure a { C# | VB.NET } ASP.NET project in such a way to make it easier to develop and test a web-application targeted to basic WML browsers?
tiago2014
  • 3,392
  • 1
  • 21
  • 28
1
vote
1 answer

How to convert html page to wml page

I have an html static page as well as a url of html web page Can anybody suggest me how can i convert these html webpages to a wml web page? any converter? or any way to achieve this? any solution that can be done at client end or server end will be…
Swati
  • 2,870
  • 7
  • 45
  • 87
1
vote
3 answers

Wml problem

I am a newbie in Wap/Wml. I have to develop a certain portion of existing php/mysql website so that people can access certain information from their mobile phone. I have the following doubts: 1) In which language should I deveop this mobile portion?…
Krishna Kant
1
vote
0 answers

is it possible to delete wml variable

unfortunately, I am using old technologies to build wap mobile app with WML, which is suitable for old mobiles (over 10 years old). we can create a variable in wml with we can reset the variable value, or…
Eng. Samer T
  • 6,465
  • 6
  • 36
  • 43
1
vote
2 answers

Create non aspx views (e.g. WML) with ASP.NET MVC2

Using ASP.NET MVC2, how would I go about creating a WML view for a given controller action? (Or any other non-aspx view for that matter). E.g. http://localhost/Store/Browse would actually return a text/vnd.wap.wml response.
nordisk
  • 113
  • 6
1
vote
0 answers

WIB/WML bytecode conversion

I need to convert WML into bytecode before sending it to SIM card via SMPP (i.e. SMS OTA). However, I am not able to find any specifications or tools to help me do the conversion. After some search, There was a tool called Transformer Pro by…
1
vote
3 answers

Making apache 2.2.11 parse .wml files as PHP?

I've tried a variety of combinations, the following being my last attempt: Addtype text/vnd.wap.wml wml Addtype image/vnd.wap.wbmp wbmp AddType text/vnd.wap.wmlscript wmls AddType application/vnd.wap.wmlc wmlc AddType application/vnd.wap.wmlscriptc…
rockstardev
  • 13,479
  • 39
  • 164
  • 296
1
vote
1 answer

WML: A element does not have a type defined

I am trying to run this WML example on variables which I found in my WML textbook but it is giving me an error every time on the same line/statement. This is the code:
Raed Shahid
  • 241
  • 5
  • 7
  • 12