posted 15 years ago
i am writing a midlet which access a servlet on a server. this is the first time i have wrote one and am using sun's emulator to run it but would like to try it on a MIDlet enabled mobile phone - can anybody point me in the direction of where i can get some info on downloading the MIDlet and running it on the phone from my webapp
posted 15 years ago
There are 2 major ways to do this.
First is :
make application package i.e. jad and jar
then use your phone's pc connectivity suit and load the application directly from pc to phone.
Second is :
load your application package onto a wap site and download onto the phone through WAP.
First is :
make application package i.e. jad and jar
then use your phone's pc connectivity suit and load the application directly from pc to phone.
Second is :
load your application package onto a wap site and download onto the phone through WAP.
tom mcmorrow
Ranch Hand
Posts: 39
posted 14 years ago
Is it just a case of putting a link to the JAD file in a WAP page and putting that on ur server, and pointing ur phone at the URL of the WAP page.
does this make it download the JAR? or do u have to put a link to the JAR in?
Any help would be much appreciated
Thanks in advance
Matt
does this make it download the JAR? or do u have to put a link to the JAR in?
Any help would be much appreciated
Thanks in advance
Matt
posted 14 years ago
I put the .jad and .jar on a web server that has the MIME type "text/vnd.sun.j2me.app-descriptor" set. You can use either a page or point directly to the .jad.
The .jad allows the device to discern whether the MIDlet is able to run on the device before downloading the .jar file of the MIDlet. It also allows config attributes to be supplied to the MIDlet(s) without having to modify the .jar file.
hth.
The .jad allows the device to discern whether the MIDlet is able to run on the device before downloading the .jar file of the MIDlet. It also allows config attributes to be supplied to the MIDlet(s) without having to modify the .jar file.
hth.

This will take every ounce of my mental strength! All for a tiny ad:
Thread Boost - a very different sort of advertising
https://coderanch.com/t/674455/Thread-Boost-feature
|