Join Now
Quality Rating:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)
Expertise Level:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)

This page was last modified 21:11, 24 October 2007.

Application Descriptor essentials

From Forum Nokia Wiki

Contents

Introduction

Each JAR file MAY be accompanied by an application descriptor. The application descriptor is used in conjunction with the JAR manifest by the application management software to manage the MIDlet and is used by the MIDlet itself for configuration specific attributes. The descriptor allows the application management software on the device to verify that the MIDlet is suited to the device before loading the full JAR file of the MIDlet suite. It also allows configuration-specific attributes (parameters) to be supplied to the MIDlet(s) without modifying the JAR file.

To allow devices to dispatch an application descriptor to the MIDP application management software, a file extension and MIME type are registered with the IANA:

The file extension of an application descriptor file is jad The MIME type of an application descriptor file is text/vnd.sun.j2me.app-descriptor. A predefined set of attributes is specified to allow the application management software to identify, retrieve, and install the MIDlet(s). All attributes appearing in the descriptor file are made available to the MIDlet(s). The developer may use attributes not beginning with MIDlet- or MicroEdition- for application-specific purposes. Attribute names are case-sensitive and MUST match exactly. An attribute MUST NOT appear more than once within the manifest. If an attribute is duplicated the effect is unspecified. The MIDlet retrieves attributes by name by calling the MIDlet.getAppProperty method.

Must Have Attributes

MIDlet-Name :The name of midlet/midletsuite
MIDlet-Version :The version info for the MIDlet
MIDlet-Vendor :The vendor of the MIDlet
MIDlet-Jar-URL :The absolute URL at which the JAR is available for download
MIDlet-Jar-Size :The Size of the jar file

May Have Attributes

MIDlet-<n> for each MIDlet :The name, icon, and class of the nth MIDlet in the JAR file separated by a comma. The lowest value of <n> MUST be 1 and consecutive ordinals MUST be used. The first missing entry terminates the list. Any additional entries are ignored. Leading and trailing spaces in name, icon and class are ignored.
MicroEdition-Profile :The MIDprofile being used eg:MIDP1.0
MicroEdition-Configuration :The Configuration being used eg:CLDC1.0
MIDlet-Description :Usually a short discription about the midlet
MIDlet-Icon :Its the absolute name of a PNG file within the JAR used to represent the MIDlet suite. It is the icon that the AMS(Application Management Software) displays .
MIDlet-Info-URL :A URL for information describing the MIDlet suite. MIDlet-Data-Size :The data storage size that can be used eg:1024 MIDlet-Permissions :Zero or more permissions that are critical to the function of the MIDlet suite.
MIDlet-Permissions-Opt :Zero or more permissions that are non-critical to the function of the MIDlet suite.
MIDlet-Push-<n> :Register a MIDlet to handle inbound connections.
MIDlet-Install-Notify : The URL to be notified after installation of MIDlet
MIDlet-Delete-Notify : The URL to be notified after deletion of MIDlet
MIDlet-Delete-Confirm
Any application-specific attributes that do not begin with MIDlet- or MicroEdition- which can be read later in code

Links

http://www.j2medev.com/api/midp/javax/microedition/midlet/package-summary.html#package_description

Related Discussions
Thread Thread Starter Forum Replies Last Post
using sis to install jad jar marcinkrol84 Mobile Java General 1 2007-05-29 13:32
The error of using Mid function of TPtrC8!!! fcsheng General Symbian C++ 2 2005-11-28 13:45
using sis to install jad jar marcinkrol84 General Symbian C++ 1 2007-05-28 14:15
TInteger to TDes? strike_noir General Symbian C++ 12 2007-12-28 05:58
Nokia Mobile Internet Toolkit and Download Descriptor clareus PC Suite API and PC Connectivity SDK 1 2003-05-28 13:40
 
Powered by MediaWiki