getting KErrNotReady when trying to reopen an RSocket object

Login to reply to this topic.
Mon, 2008-04-14 19:30
Joined: 2008-01-18
Forum posts: 2

Hi,
at first when I try to open the RSocket - I succeed, but from then on I fail every time - the open function returns the error code
KErrNotReady.

the sequence that I use from 1 open call to another is :

iSocket.open()
iSocket.CancelAll();
iSocket.Close();

thanks in advance,

Uri


Tue, 2008-04-15 09:18
Joined: 2003-12-05
Forum posts: 587
Re: getting KErrNotReady when trying to reopen an RSocket object

One reason might be that since R -objects are handles to objects in an external server process, the server has not yet completed closing of the R -object. You might have to wait for a file, and then try again.

  • Login to reply to this topic.