Well through another J2SE bluetooth app I figured out the URL for my Nokia 6600.
Now I'm trying to open a connection with the cellphone through the following code but the cell phone is asking for a PIN. What pin should I give or how can I set PIN on the J2SE app.
Here is the code:
public void send()
{
String url = "btspp://000E6DE87294:2;authenticate=false;master=false;encrypt=false";
try
{
StreamConnection strCon = (StreamConnection)Connector.open(url);
}
catch(Exception e)
{
e.printStackTrace();
}
}



