Every Little Fing about Kjava, J2ME, Mobile Games

Last update: 2004-04-23 by peter

Introduction: J2ME guide by Pacess (exception: use J2SE 1.4, not JDK 1.3)

Minimal step to start J2ME development

footnote: if any link is not working, find it in google, and tell me =)

Additional information

Links and Tips: Symbian: J2ME game download site: J2ME/Symbian games JAD security permission setup
Permission 					Protocol
=======================================================
 
javax.microedition.io.Connector.http  		http  
javax.microedition.io.Connector.https  		https  
javax.microedition.io.Connector.datagram  	datagram  
javax.microedition.io.Connector.datagramreceive  datagram server (without host)  
javax.microedition.io.Connector.socket  	socket  
javax.microedition.io.Connector.serversocket  	server socket (without host)  
javax.microedition.io.Connector.ssl  		ssl  
javax.microedition.io.Connector.comm  		comm  

e.g.:
MIDlet-Permissions: javax.microedition.io.Connector.socket, javax.microedition.io.Connector.datagram 
## peter: no line feed / enter


J2ME push registry
    MIDlet-Push-1: socket://:79, com.sun.example.SampleChat, *
    MIDlet-Permissions: javax.microedition.io.PushRegistry, javax.microedition.io.Connector.servers
Ref on permission and push registry