Hi,
my application uses push registry to wake up on a bluetooth connection. The wakeup works fine and I get the URL via PushRegistry.listConnections(true);
The problem is, as soon as I open a connector with that URL I get an IOException. The Message is:
SymbianOS error = -6406 : General: System error
This is the code:
Does anyone know this problem? Can anyone give me a hint to find more about error 6406? I couldn't figure out in which document to search for.Code:String[] connectionList = PushRegistry.listConnections(true); for (int loop = 0; loop < connectionList.length; loop++) { if (connectionList[loop].startsWith("btspp://")) { try { SessionNotifier sn = (SessionNotifier) OBEXConnector.open(connectionList[loop]); } catch (IOException e) { mainForm.append("ERROR - IOException while opening the server connector - " + e.getMessage()); } } }
Thanks!
Olli

Reply With Quote

