Manual Nokia 9110i

26 pages 0.2 mb
Download

Go to site of 26

Summary
  • Nokia 9110i - page 1

    1 (26) WAP Service Developer's Guide for th e Nokia 9110i July 2000 ...

  • Nokia 9110i - page 2

    2 (26) Disclaimer: Nokia Mobile Phones Limited disclaims all liability, including liability for infringement o f any proprietary rights, relating to the implemen tation of information presented in this documen t. Nokia Mobile Phones Limited does no t warrant or represen t that such use will not infringe such rights. Nokia Mobile Phones Limited reta ...

  • Nokia 9110i - page 3

    3 (26) Contents 1. INTROD UCT ION ............................................................................................................................... 4 1.1 References ............................................................................................................................... 4 1.2 Contact information ................. ...

  • Nokia 9110i - page 4

    4 (26) 1. INTRO DUCTION This Service Developer's Guide for the Nokia 9110i Communicator provides information and practical examples for dev elopers who want to develop WAP services for Nokia 9110i. 9110i Communicator is an advanced communications device with a feature-rich WAP services application. The document will highlight the possibilities ...

  • Nokia 9110i - page 5

    5 (26) Terminology Card A single WML unit of navigation and user interf ace. Deck A collection of WML cards th at is the smallest downlo ad unit. You canno t download a single c ard in a deck, but must download the entire Deck. Service develop ers should be aware of this, and no t do a giant application in one big Deck. Hyperlink A link within a do ...

  • Nokia 9110i - page 6

    6 (26) 2. WIRELESS AP PLICA TION PRO TOCOL - WAP 2.1 Introduction The Wireless Application Protocol (WAP) is a set of protocols that allow the development of applications and services for use with Mobile Phones and other mobile devices . These protocols and their related standards and specifications are maintained by the WAP For um. The WAP Forum c ...

  • Nokia 9110i - page 7

    7 (26) Wireless Mark-up Language (WML) - a lightweigh t presentation language, similar to HyperText M ark- up Language (HTML) but optimized for use with mobile termin als. Wireless Mark-up Language Script (WMLS) - a lightweight script language, similar to Java Script TM . Wireless Telephony Application / Interface (WTA / WTAI) - telephony services ...

  • Nokia 9110i - page 8

    8 (26) Figure 2 – Network-Related Elements for WAP Applications Web S erver : The Web Server stores the applications written in WML. Alternatively, existing HTML applications can be used. HTML Filter : Any applications written in HTML will have to be converted to WML before they are se nt to the mobile terminal. This HTML Filter may form part of ...

  • Nokia 9110i - page 9

    9 (26) 3. INTRODUCTION TO THE USER INTERFACE OF THE NOKIA 9110i C OMMUNICATOR This section gives a s hort overview of th e user interfac e of the Nokia 9110i Communicator . The Nokia 9110i is a Communicator devic e with featu res of both PDA and CMT sides. WAP services application is implemented in PDA side togethe r with the other Internet service ...

  • Nokia 9110i - page 10

    10 (26) • The size of the application area depends on the width of the longest comm and button text. The minimum width of the command button area is 4 30 pixels, the maximum being 480 pixels. Figure 2 Different parts of the display 3.2.2 Display components The display is able to show 1 6 grey tones. All of these will be used when images ar e show ...

  • Nokia 9110i - page 11

    11 (26) WAP Browser main view opens wh en selecting WAP services from Internet application. The homepage URL is displayed on th e bottom line of the view, if the URL exceeds the end of line, the remai ning part of the nam e is not showed to the user . View includes buttons: Button 1: Home Button 2 : Bookmarks Button 3 : Setti ngs Button 4: Hang up ...

  • Nokia 9110i - page 12

    12 (26) 4.2.3 Optimize for Size The size of the content is critical. If you have large decks (list ings, large tables, etc.), consider splitting them in multiple parts for f aster download. As for the total download time, some s tudies place an upper limit for acceptable delay to 10 to 15 seconds, including all images, on a PC-based browser . It is ...

  • Nokia 9110i - page 13

    13 (26) 4.3.2 Use Reasonable Tables Sizes If the table siz e exce eds the maximum width of WAP services application screen du e to number of columns the table size will be scaled down to fit the screen. To keep the cell content readable, special attention should be paid on table structuring. 4.4 Use of card t itles and eleme nt labels Card titles d ...

  • Nokia 9110i - page 14

    14 (26) If the ti tle of the card is too lo ng, th e end o f the ti tle is no t shown. If the ac tive el emen t is too long the end of the elemen t is not show n. If th e title of the ac tive hyperlink is no t defined the a ctual URL is shown. If the URL is too long, the end of the URL is not shown. For example if the user navigates to a sel ect el ...

  • Nokia 9110i - page 15

    15 (26) 5.1.3 Text format ting elemen ts The normal font size used in 9110i is 12 pixels. The 9110i bro wser supports all text emphasis el ements of WML, listed below . The picture below demons trates how diffe rent emphasis el ements are rendered as text and in a table. Em <em> element is re ndered as bold tex t Strong <strong> element ...

  • Nokia 9110i - page 16

    16 (26) 5.1.5 Fieldset The <fieldset> -element can be used for grouping elemen ts. It implies a paragraph break betwee n the elements, and the titl e of the element is used as the active element’s title if it has no title of its own. Note that fieldset title is not supported for text ie. text in a card can not b e titled by using fieldset e ...

  • Nokia 9110i - page 17

    17 (26) <td>W 6/9</td><td><img src="cloudy.wbmp" alt="cloudy"/></td> <td>Hi 22&#xB0;C, Lo 18&#xB0;C</td><td>Cloudy</td> </tr> <tr> <td>T 6/10</td><td><img src="rainy.wbmp" alt="rainy"/></td> <td>Hi 20 ...

  • Nokia 9110i - page 18

    18 (26) Exampl e 4. Imag e handli ng <wml> <card id="card1" title="The sun - images"> <p> original size:<img src="sunny.wbmp" alt="sun"/> enlarged image:<img src="sunny.wbmp" alt="sun" height="40%" width="40%"/> <br/> stretched image: ...

  • Nokia 9110i - page 19

    19 (26) NOKIA - connecting people<br/><br/> Here's a&#160;<anchor title="Link to Products">link <go href="#products"/></anchor>&#160;to Nokia products.<br/> The image below can be used as a link to Nokia Group page.<br/> <a title="Link to Nokia Group" href=" ...

  • Nokia 9110i - page 20

    20 (26) <img src="nokia3.wbmp" alt="nokia3"/> </p> </card> <card id="card2" title="Nokia page"> <p> … </p> </card> </wml> 5.3 DO elem ent and d ynamic bu ttons 5.3.1 WML D O Construct: Dyn amic B uttons WML makes it possible to include ‘dynamic bu ttons’ i ...

  • Nokia 9110i - page 21

    21 (26) <do type="options" name="help-button" label="Nokia Help"> <go href="http://.../help.wml"/> </do> <do type="options" label="Contact"> <go href="http://.../contact.wml"/> </do> <do type="prev" label="Back"> <p ...

  • Nokia 9110i - page 22

    22 (26) Exampl e 8. Card- wide b ack-butto n <wml> <card id="prevcard1" title="Cardwide prev"> <p> Cardwide prev can be placed between text or other elements, <do type="prev" label="Cardwide prev"> <prev/> </do> on bottom of page just like deckwide prev &#160; <a tit ...

  • Nokia 9110i - page 23

    23 (26) GO Attributes: href specifies the destination URL. Href is an obligatory attribute. method specifies the HTT P submission metho d. Values 'get' and 'post' are accep ted, in 9110i 'g et'- method is default . A prev element declares a prev task, indicating navigation to the previous URI on the history stack. If t ...

  • Nokia 9110i - page 24

    24 (26) value indicates the default value of the variable named in the name a ttribute iname the name of the variable to be se t with the ind ex result o f the sel ection ivalue assigned when the variable nam ed in the inam e attribute is no t set title specifies a title fo r this element, which may be us ed in the p resentation of this object Vari ...

  • Nokia 9110i - page 25

    25 (26) <option value="Nokia 8210">8210</option> <option value="Nokia 7110">7110</option> <option value="Nokia 6110">6110</option> </optgroup> <optgroup title="Accessories"> <option value="Battery">Battery</option> <option value="De ...

  • Nokia 9110i - page 26

    26 (26) <table> 5.7 Limitations This section includes the technical limitations of the WAP services application. The limitation for encoded WML file is 8192 Bytes. META DATA (HTTP-E QUIV) is handled like WAP stack handles it. The User-Agent header In formation given to the server is "Nokia91 10/1.0". ...

Manufacturer Nokia Category Telephone

Documents that we receive from a manufacturer of a Nokia 9110i can be divided into several groups. They are, among others:
- Nokia technical drawings
- 9110i manuals
- Nokia product data sheets
- information booklets
- or energy labels Nokia 9110i
All of them are important, but the most important information from the point of view of use of the device are in the user manual Nokia 9110i.

A group of documents referred to as user manuals is also divided into more specific types, such as: Installation manuals Nokia 9110i, service manual, brief instructions and user manuals Nokia 9110i. Depending on your needs, you should look for the document you need. In our website you can view the most popular manual of the product Nokia 9110i.

Similar manuals

A complete manual for the device Nokia 9110i, how should it look like?
A manual, also referred to as a user manual, or simply "instructions" is a technical document designed to assist in the use Nokia 9110i by users. Manuals are usually written by a technical writer, but in a language understandable to all users of Nokia 9110i.

A complete Nokia manual, should contain several basic components. Some of them are less important, such as: cover / title page or copyright page. However, the remaining part should provide us with information that is important from the point of view of the user.

1. Preface and tips on how to use the manual Nokia 9110i - At the beginning of each manual we should find clues about how to use the guidelines. It should include information about the location of the Contents of the Nokia 9110i, FAQ or common problems, i.e. places that are most often searched by users in each manual
2. Contents - index of all tips concerning the Nokia 9110i, that we can find in the current document
3. Tips how to use the basic functions of the device Nokia 9110i - which should help us in our first steps of using Nokia 9110i
4. Troubleshooting - systematic sequence of activities that will help us diagnose and subsequently solve the most important problems with Nokia 9110i
5. FAQ - Frequently Asked Questions
6. Contact detailsInformation about where to look for contact to the manufacturer/service of Nokia 9110i in a specific country, if it was not possible to solve the problem on our own.

Do you have a question concerning Nokia 9110i?

Use the form below

If you did not solve your problem by using a manual Nokia 9110i, ask a question using the form below. If a user had a similar problem with Nokia 9110i it is likely that he will want to share the way to solve it.

Copy the text from the picture

Comments (0)