Hi,
I am developing a J2ME application to run in public areas, like supermarkets, shopping centers, etc. So, I want to make possible to install my application in every mobile phones nearby via bluetooth. My intention is to create a separate J2SE application to perform a device discovery and look for OBEX services. After that, ask the user to install the application.
I have tried using javax.microedition.io.Connector, but it always requires a both side (client and server) pass-key.
OBEXClientSessionImpl conn = (OBEXClientSessionImpl) Connector.open(serviceUrl);
I have also found obex-install, which does what I want but the pairing problem persists.
Is there a way to send/install .jar files programatically via bluetooth without pairing or using a fixed PIN number so I can't repeat it in server side?
Thanks in advance, Fernando