I am attempting to obtain a list of Destination Queue Names in order to populate a control on a form. I have tried the following:
K2Manager oManager = new K2Manager();
oManager.Login("Server Name", 5252);
DestQueues oK2DestQueues = oManager.GetDestQueues();
for (int i = 0; i < oK2DestQueues.Count; i++)
{
string name = oK2DestQueues.Name;
}
Whilst this does return the list of queue names it also requires that the user viewing the form is an Administrator user.
Does anyone know of an alternative method to get this list?
Obtaining a list of Destination Queue Names
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
