going mobile !
Using the push registry to launch midlets : MIDP 1.0 specified only one way to start a MIDlet: manual activation by the user. However the MIDP 2.0 specification adds two new mechanisms to launch a MIDlet: in response to an incoming connection or at a scheduled time. While the process is not really difficult as explained in the papers and articles given on the net ( http://developers.sun.com/techtopics/mobility/midp/questions/pushregistry/ ) The actual implementation of it is tricky mainly because of the practical difficulties and platform implementations. We needed to auto start a MIDlet each time the phone boots up and the most obvious choice seemed to be using the Java Push Registry Alarm method. Having read a couple of tutorials and seen the example code given it didn’t seem something too difficult to do – however, and such is the software jungle, overcoming the practical difficulties seemed to be the biggest hurdle. For example, in my case I was using Eclipse 3.0 with the java WTK ...
Comments