tags:

views:

195

answers:

2

my problem is that ,

i have to implement tcp socket in server of client -server architecture

1)tcp ip socket is implemeted using active object

2)CTimeServer class is derieved from CServer2 which is derive from active object

both class are derive from active object and if i call cTimeserver instance and it shows EUserPanic 47 error

what is proper way to implement tcp.ip socket in Cserver2 derived server class

thanks in advance

+1  A: 

It's probably a bad idea to use the CServer2 derived object to handle the RSocket asynchronous functions. Create separate active objects (usually one for readin and one for writing) for the sockets.

Ola
A: 

Rahulm, this was basically already discussed in the comments of implemenation of service in symbian

Dominik