Skip to main content
Nintex Community Menu Bar

Can't open WorkList

  • August 20, 2006
  • 3 replies
  • 16 views

Forum|alt.badge.img+2
I try to open WorkListItem by the following code (this code run in ASP.NET )

SourceCode.K2ROM.Connection oK2Connection = new SourceCode.K2ROM.Connection();
SourceCode.K2ROM.Worklist oWorkList;
oK2Connection.Open(strK2Server);
oWorkList = oK2Connection.OpenWorklist("ASP");

And the result of oWorkList.Count return 0.

But when i checked in my WorkSpace. It have 16 ProcessInstances. In activities in ProcessInstances have the destination is <My Name>.

Why oWorkList.Count return 0?

Help me.

Thanks!

3 replies

Forum|alt.badge.img+11
  • Nintex Employee
  • August 21, 2006
For some reason, you're not getting the right user credentials through to K2.net Server. Shut down the K2.net Server Service and run the Server in Console mode. Retry your code and you should see which user is being authenticated.

The problem could be impersonation in your app's web.config, the AppPool ID your app runs under OR Kerberos authentication not being set up correctly.

HTH,
Ockert

Forum|alt.badge.img+2
  • Author
  • August 21, 2006
I have checked Server. Now i can access the WorkListitems.

Thanks a lot!

Forum|alt.badge.img+13
  • Rookie
  • August 21, 2006
What was the issue that you fixed to get it to work?