Get All User C#

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2010 10:01 AM
Hi, I'm new to Alfresco and also in the forum.
I am creating an application using Visual Studio 2008 C # with Alfresco 3.2R, consuming Web Services Alfresco.
I need to get all the users in alfresco repository but have not found a method to do so.
Someone knows how can I do?
Thank you very much.
Excuse my English.
I am creating an application using Visual Studio 2008 C # with Alfresco 3.2R, consuming Web Services Alfresco.
I need to get all the users in alfresco repository but have not found a method to do so.
Someone knows how can I do?
Thank you very much.
Excuse my English.
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2010 02:19 PM
I answer myself.
I leave the code here if someone serves.
UserFilter filtro = new UserFilter();
var result = administrationService.queryUsers(filtro);
int i = 0;
ArrayList Usuarios = new ArrayList();
string usuario;
bool flagSeAcabo = false;
do
{
try
{
usuario = result.userDetails.userName;
Usuarios.Add(usuario);
i++;
}
catch
{
flagSeAcabo = true;
}
} while (!flagSeAcabo);
lbResultado.Text = "Hay " + i.ToString() + " Usuarios";
I leave the code here if someone serves.
UserFilter filtro = new UserFilter();
var result = administrationService.queryUsers(filtro);
int i = 0;
ArrayList Usuarios = new ArrayList();
string usuario;
bool flagSeAcabo = false;
do
{
try
{
usuario = result.userDetails.userName;
Usuarios.Add(usuario);
i++;
}
catch
{
flagSeAcabo = true;
}
} while (!flagSeAcabo);
lbResultado.Text = "Hay " + i.ToString() + " Usuarios";
