| | | Supreme Being
       
Group: Forum Members Last Login: Thursday, September 15, 2011 Posts: 20, Visits: 47 |
| I'm trying to create a custom ASPX page with a button and when they click it to just create a piece of work. But I'm having problem with the User ID. I get the following error:
Not a valid entity id (2), provider name is empty.
What exactly is the "Application Name", is that my repository name?
On the below code.
string test = "2"; Workflow.NET.Engine.Client objClient = new Workflow.NET.Engine.Client("AXBPM", "Lease Progression Process");
objClient.Execute(2, test); objClient.Close(); |
| | | | Supreme Being
       
Group: Forum Members Last Login: Thursday, September 15, 2011 Posts: 20, Visits: 47 |
| Better news
string test = "2"; Workflow.NET.Engine.Client objClient = new Workflow.NET.Engine.Client("AXBPM", "Lease Progression Process"); objClient.Execute("activedirectory::cd1dbffd-0ae0-46e2-80a6-643cbd507c1a", test); objClient.Close();
This now gives me the following error: Unable to fetch entity item from provider (activedirectory) for entityId (activedirectory::cd1dbffd-0ae0-46e2-80a6-643cbd507c1a) , IsPrimaryDataSource:True., Repository:AXBPM, severityLevel: Critical |
| | | | Supreme Being
       
Group: Forum Members Last Login: Monday, September 12, 2011 Posts: 18, Visits: 36 |
| | Hi, If you are using active directory as provider then use the name of user for user id and not guid. Ex: activedirectory::john Please find attached the document which clearly defines the ways of providing user id for different type of providers. If you have help files please refer the path: Skelta BPM.NET 2009 Developer Guide->Using Skelta BPM.NET Controls in the Application->Embedding Skelta Controls in the Application->Work Item List Control
Regards, Prashant Patil
Regards, Prashant Patil
|
| | | | Supreme Being
       
Group: Forum Members Last Login: Thursday, September 15, 2011 Posts: 20, Visits: 47 |
| | Thank you, changing it to the username fixed my issue |
| |
|
|