Accessing client address space from server

Login to reply to this topic.
Wed, 2006-01-11 14:20
Joined: 2005-06-24
Forum posts: 5
Hi All,

I have a question regaring Client -Server IPC. My Server and Client are 2 different threads running in 2 different Process. I am sending poinet to an HBufC from the Server using TIpcArgs and in the server side.

I am extracting that pointer using from RMessage::ReadL  and trying to write some data on to that location (which is in client's address space ). But its getting PANICed with KERN-EXEC 0.

Now, my question is, is it possible to modify client's address space (which is in different process) from server? If so, how to do that? I am using Symbian 9.1 with PLATSEC.

Thanks in advance for the help.

Regadrs
Girish

Girish Shetty


Wed, 2006-05-24 09:47
Joined: 2006-04-27
Forum posts: 4
Re: Accessing client address space from server
Hi,

It is not possible to modify client's address space (which is in different process) from server directly. you must request kernel do so. Note that addressess are not valid across process boundary. Use RMessage::WriteL instead.

Regards,
tumkur
  • Login to reply to this topic.