I am trying to setup a serial Bluetooth server for a E61 phone. I am using the S60 v3 SDK which requires additional security certificates. I have obtained the DevCert but I am running into "Unable to execute file for security reasons".
RSocketServ SocketServ;
SocketServ.Connect();
_LIT(KRFCOMM, "RFCOMM"); // or RFCOMM as appropriate
//Open a socket
//
//Open a socket for that protocol.
RSocket ListeningSocket;
//Security notification occurs here![]()
User::LeaveIfError(ListeningSocket.Open(SocketServ,KRFCOMM));
RSocket is Capability: Dependent, and SocketServ has no Capability specified. This leaves the RFCOMM Description. I am assuming that I need to request for a certificate from NOKIA to access this, but I don't know what I need to request for. I assume it is network control. Does anyone have any suggestions.
Thanks,



