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
1
vote
1 answer

how to rest my app to support mobile phone

I am now going to develop a mobile website both support common html format page and wml format page(Because now a usual web browser on mobile can view html page and some old mobiles only support wml ) First step: register content type for wml…
qichunren
  • 4,405
  • 7
  • 37
  • 48
1
vote
2 answers

WML and WAP development environment for school purpose

I am studying WML and WAP at semester 5 in BscIT and i had hard time finding the nokia wap toolkit as used in my books.When i finally got a copy from a friend , it never loaded the jvm even though beside java 1.6 that was previouly installed i…
highjo
  • 87
  • 1
  • 9
1
vote
1 answer

Parsing WML on the iPhone

I have a WML based source of data which I need to parse in an iPhone app. What would be the easiest way to achieve this? I'm currently looking into the various XML libraries available on the iPhone but would appreciate a nudge in the right…
iOSDevil
  • 1,786
  • 3
  • 16
  • 29
1
vote
5 answers

Make a site automatically choose between the WAP or normal version?

I have a website with the following files in the root folder: index.wml index.php How do I get it to open index.php if you are accessing via non-wap browsers, but open index.wml automatically when it is a wap browser. I suspect something must go…
Ardi Coetzee
0
votes
2 answers

Should I have to use WML/HTML?

I have to optimize my website to mobile version. So, should I have to strictly use WML only or can I manage with HTML (xHTML with 240 X 320 or something). I never worked with WML/XML and I have enough knowledge in HTML. Will my website encounter any…
Mad coder.
  • 2,175
  • 8
  • 38
  • 53
0
votes
1 answer

WML expected whitespace error

I am transforming an XML file to WML using XSLT. Everything is fine until I try to open the WML in M3Gate. It gives the error "Bad WML syntax. 'Fatal Error. Ln 1, Col 38 Expected whitespace'." Here is the offending code. However, I've tried moving…
pypmannetjies
  • 25,734
  • 7
  • 39
  • 49
0
votes
0 answers

This XML file does not appear to have any style information associated with it. can't open file

first of all, just know that i absolutely have no experience/knowledge in computing/programming, so please, bear with me. So whenever I'm trying to open links contening a picture from outlook (browser and application) i receive the same message…
0
votes
1 answer

How to dynamically make html element get its ID?

So I have something like this:
user17388101
0
votes
2 answers

using wml variable in php code

I wrote the following code title :
body :
the problem How I print the entered value in input…
bigStar
  • 1
  • 1
0
votes
1 answer

How to execute WMLscripts and WML codes?

i've downloaded the Nokia Mobile Internet Toolkit and tried to execute couple of sample WML codes but itz not executing? Can any one guide me how to start with wml development as i am beginner to this?
GCODER
  • 1
  • 1
0
votes
1 answer

Could not connect to ibm WML

I am trying to do follow the ibm tutorial for object detection (https://cloud-annotations.github.io/training/object-detection/wml/) and i have a problem when I try to connect to the machine. Here are the credentials { "apikey":…
Horatiuw
  • 179
  • 2
  • 2
  • 12
0
votes
3 answers

Can a WAP 1.x device view WAP 2 or full HTML websites?

I don't think this is possible, but can a WAP 1.x device view WAP 2 websites? Or even full HTML websites? My question specifically refers to older phones (e.g., http://www.gsmarena.com/ericsson_t20s-211.php) without better browsing capabilities…
DW.
  • 71
  • 2
  • 9
0
votes
1 answer

How do I test this WML parser?

So I had an assignment in which I was supposed to make a WML parser that obeys the following grammar rules: Here are the gramma rules The prof posted the solution and I'm trying to test inside intellij but it keeps giving me an error. here's the…
Donat
  • 81
  • 3
  • 12
0
votes
1 answer

Scala: Regular Expression pattern match with curly braces?

so I am creating an WML like language for my assignment and as a first step, I am supposed to create regular expressions to recognize the following: //single = "{" //double = "{{" //triple = "{{{" here is my code for the second one: val double =…
Donat
  • 81
  • 3
  • 12
0
votes
0 answers

Server response on oreo via mobile data issue

I have some really magic issue. Everything is for android 8 (oreo): I make some requests using retrofit2 to my server. Sometime I shoul have error responce from server with 500 status code and json body. If I make requests via wi-fi, everything…
verona1024
  • 31
  • 1
  • 8