Skip to main content
Hi,

Sine two days i get this error when i try to open a connection to the server

4409 domainservername$ from xxx.xxx.xxx.xxx does not have rights to Open Process procName(id)

the servername is used instead of the user name.

here is my code:

' Connect
oK2Connection.Open(ServerName)

'Get process instance
K2ProcessInstance = oK2Connection.OpenProcessInstance(K2ProcessID)

(----)
' Close connection
oK2Connection.Close()

What you are seeing typically happens when the application is not configured to use impersonation. Check the web.config file for you application and make sure that the tag <identity impersonate="true" /> is in there.

I hope this helps.
-Eric

Reply