Hi All,
I'm writting a bluetooth server application. When I tried to send data using RSocket::Write function, the RunL will not be called. And the client device also not received the data. Here is my code:
iAcceptedSocket.Write(aMessage, iStatus);
SetActive();
But if I use the following code to receive data, it's successful.
iAcceptedSocket.RecvOneOrMore(iMessage, 0, iStatus, iLen);
SetActive();
So why I can't send data out? Any body has ever meet this problem?
Thanks!




