Search code examples
c#.netremotingipc

Dealing with security on IPC remoting channel


I am trying to run a service under a different user account from the application that will access the service via remoting.

While under the same account everything is fine, but as soon as I use different accounts, I get an access denied error while trying to open the IPC port.

Is there something I am missing, as I can't see from the MSDN docs what is supposed to be done.

Thanks


Solution

  • To close:

    Is the user account you are trying to use a member of the group specified in the authorizedGroups attribute in the channel definition? – S.Skov

    (Dont upvote)