0

I develop on J2ME test App, I can install in my old nokia using Bluetooth, IR, Cable.

But there is any way of sending this App using SMS or other network based protocol?

gnat
  • 6,213
  • 108
  • 53
  • 73
Pedro
  • 2,907
  • 6
  • 34
  • 46
  • 1
    did you consider [MIDP OTA provisioning](http://developers.sun.com/mobility/midp/articles/ota/)? **...ability to download and install content over a wireless network...** – gnat Feb 14 '12 at 08:29

2 Answers2

1

The only thing you can do via SMS is to send a URL to your MIDlet's .jad file.

funkybro
  • 8,432
  • 6
  • 39
  • 52
1

You can put your jad and jar in the internet. Create a wap (or web) page that can be accessed by the device. In the wml (html) file, there must be a link that points to your jad file like this:

<a href="app_location/MyJMEApp.jad">This is my JME App!</a>

Normally, you put the jad and jar file in one folder and so you have this in the jad file:

MIDlet-Jar-URL: MyJMEApp.jar

But if not, then you have to indicate it in the value of MIDlet-Jar-URL. If you open the wap (web) page on your device and click on the link, the device will download and install the MyJMEApp.jar.

yoninja
  • 1,952
  • 2
  • 31
  • 39