Home > Articles > Networking > Wireless/High Speed/Optical

WMLScript

Libraries

The WAP standards provide a rich set of standard libraries as well as libraries to provide application-level security and access to telephony functions. We list theses libraries, but to use the library functions, you will need to download the "WMLScript Standard Libraries Specification" and optionally the "WMLScript Crypto Library" and "Wireless Telephony Application Interface Specification," all available from the WAP Forum's Web site.

Lang

The Lang library contains functions that directly extend the WMLScript language, including integer arithmetic, conversion from string to numeric, random number generation, and implementation-specific values (such as the maximum supported integer). To access these functions from your WMLScript code, use the Lang library prefix—for example, var smallest = Lang.min(x, y);.

Some Lang functions are listed here:

  • min(x, y)—Returns the smaller of x and y (or invalid), where x and y are numbers

  • max(x, y)—Returns the larger of x and y (or invalid), where x and y are numbers

  • abs(x)—Returns the absolute value of the specified number x.

  • isInt(s)—Returns true if s can be converted to a legal integer

  • parseInt(s)—Converts the contents of s to an integer

  • isFloat(s)—Returns true if s can be converted to a legal floating point number

  • parseFloat(s)—Returns true if s can be converted to a legal floating point number

Float

This library contains basic floating point operations. Some devices may not be capable of supporting such operations (verify this using the Lang.float() function, which will return false if floating pont operations are not supported), in which case these functions will return invalid. Functions include those that return integers related to the specified floating point number, powers and roots, as well as implementation-specific information.

Float functions include these:

  • int(n)—Truncates n, returning only the integer part

  • round(n)—Rounds n to the nearest integer (rounding up if two integers are equally close to n)

  • pow(x, y)—Returns the result of raising x to the power of y

  • sqrt(n)—Returns the square root of n

String

String functions provide convenient operations to access and update strings. WMLScript strings can be thought of as arrays of characters, with the first character located at index 0. Functions are provided to access, modify, compare, convert to, and format strings.

Some String functions include these:

  • length(s)—Returns the number of characters in s

  • isEmpty(s)—Returns true if s contains no characters

  • subString(s, start, length)—Returns the portion of s starting at start, which is length characters long

  • charAt(s, index)—Returns the character in s at position index

URL

This library contains functions that work with absolute and relative URLs. Functions are provided that get the various parts of a URL, test validity, merge two URLs, perform escaping operations, and get the contents of a URL.

Some URL functions include these:

  • getHost(url)—Returns the host (domain) portion of url (such as www.mydomain.com)

  • getPort(url)—Returns the server port number of url (such as 80)

  • getPath(url)—Returns the path portion of url (such as "/scripts/myScripts.wmls")

  • getParameters(url)—Returns the parameters associated with the last path segment of url

  • escapeString(s)—Returns a string based on s, but with the appropriate escape sequence substitutions

  • unescapeString(`s')—Removes escape sequence substitutions from s, returning a new string

WMLBrowser

This library gives you access to the WML user agent context (when the WMLScript was called from WML). Most of these functions have analogs in WML, and functions are provided to manipulate variables, perform tasks, reset the context, and get the relative URL of the current card.

Functions include these:

  • getVar(name)—Returns a string containing the value of name from the current browser context, or an empty string, if this variable does not exist

  • setVar(name, value)—Returns true if the variable named by name containing value is successfully set in the current browser context

  • go(url)—Has the same effect as the element in WML. Following completion of the WMLScript function in which the go function is called, control will return to the WML Browser and the card referred to by url will be loaded. This URL may be relative to the current deck or may be absolute.

  • prev()—Has the same effect as the WML element. Following completion of the containing WMLScript function, the previous card in the WML Browser history will be loaded.

  • refresh()—Has the same effect as the WML element, except that a suspended timer task will not be restarted. Refresh will occur immediately when this is supported by the device; otherwise, it will occur when control is returned to the WML Browser following script completion

The newContext() function clears the entire WMLBrowser context, including all variables and the card history stack. This task returns an empty string if it is successful and returns invalid if it is not.

Dialogs

The Dialogs library provides common user interface functions:

  • prompt(message, default)—Displays message and the default response, and returns the user's response as a string, as in Dialog.prompt("Number of children: ", "0");.

  • confirm(message, ok, cancel)—Displays message and offers two options as defined in ok and cancel, as in Dialog.confirm("Is that your final answer?", "Yes", "No");. This returns Boolean true if the user selects ok and returns false if the user selects the cancel option.

  • alert(message)—Displays message and waits for the user to confirm before returning an empty string.

Crypto

The Cryptographic Library Specification currently supports digital signatures. Although the Wireless Transport Layer Security (WTLS) standard provides for client authentication during a session, the Crypto library adds a way to provide a lasting record of a user transaction. This is useful when there must be a fool-proof way to determine that a user has approved a particular transaction (as in the purchase of goods or services).

The signText function requests that the user digitally sign a specified string. A special digital certificate is used for this. This may be stored on a smart card in the mobile device (or a SIM card, as used in some GSM handsets). The user is presented with the text that is to be signed and must explicitly indicate acceptance and enter a secret PIN. The function then signs the text using the user's private key. Typically, the digital signature created by this, as well as the original text, will be used by a server to validate the transaction; the signature may be stored for later reference.

The signText function has this format:

Crypto.signText(s, instructions, keyIdType, keyId) 

The parameters are as follows:

  • s is the string that will be displayed to the user and used to create the digital signature.

  • instructions is an integer that instructs the browser to return information in addition to the signed text.

  • keyIdType is an integer code that specifies which key should be used.

  • keyId is a string that contains one or more (concatenated) Secure Hash Algorithm (SHA-1) hashes if the keyIdType parameter is set to 1 or 0.

Note that this function may not be supported on many wireless devices because it requires some form of personalized locally stored security information (such as a Wireless Identity Module, or WIM) to be accessible to the WML Browser.

WTA Public

The Wireless Telephony Application interface provides functions to create telephony applications. Only one library in this interface is available for use by general WML decks or other WMLScript functions: the Public library. The Public library is identified by wp when called from WML and by WTAPublic when called from WMLScript functions.

When calling the Public library from WML, a special URI format is used, as follows:

wtai://wp//functionName; parameters [!result]  

Here, wtai identifies the Wireless Telephony Application Interface, wp is the Public library, and functionName is either mc to make a call, sd to send a Dual Tone Multi-Frequency (DTMF) tone sequence, or ap to add a number to the phone book. Parameters are passed for all these functions, following a semicolon separator, and an optional variable name can be specified preceded by an exclamation mark (!). When calling the public library from WMLScript, a standard library function call is used, such as WTAPublic.functionName(param1, param2);. The function output is returned as a result of the function call.

Telephone numbers and DTMF digits used in telephony calls must be formatted as follows. International phone calls are prefixed by the plus (+) sign. All phone numbers simply consist of a string of ASCII digits (0 to 9), with no spaces or separators. DTMF digits may contain any combination of the following characters: *, #, A, B, C, D, ,, and 0 to 9.

The Public WTA library supports the following:

  • makeCall(number)

  • SendDTMF(tones)

  • addPBEntry(number, name)

The result of these functions is zero if valid and negative if an error has occurred.

Note that not all phones support the WTA. For example, the Nokia 7110 requires that you use the "Use Number" function (a mechanism borrowed from SMS) to dial a number.

That concludes our discussion of libraries. The next sections illustrate the use of both WMLScript and the library functions through a series of examples.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020