views:

26

answers:

0

I have a C++/ATL COM server that implements IConnectionPoint events. My client is a C# application that attaches to the events. When the COM server is created as a SYSTEM service, the client can properly attach to the event. When the COM server is created as a LocalService service (preferred), then I get an E_ACCESSDENIED exception when I attach to the event.

What can I do to get the events to work when the COM server is LocalService?

Thanks.