Create groups
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 07:58 AM
Hi,
First excuse my English,
It possible to create group via webservice with alfresco 2.1, I don´t found enough information about this.
thank
First excuse my English,
It possible to create group via webservice with alfresco 2.1, I don´t found enough information about this.
thank
Labels:
- Labels:
-
Archive
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2007 03:03 PM
Hi,
do you got any info about this?
It seems like nobody has tried this before.
thank,
do you got any info about this?
It seems like nobody has tried this before.
thank,

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2007 06:10 AM
Hi,
I'm afraid it is not currently possible to create a group using the web service API.
Perhaps an alternative route would be to create a web script to do this for you?
Cheers
Roy
I'm afraid it is not currently possible to create a group using the web service API.
Perhaps an alternative route would be to create a web script to do this for you?
Cheers
Roy
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2007 05:11 PM
Hi,
If you are looking for another option and comfortable writing custom actions,
you could write an action to manage groups and call the action via webservice API.
With 2.1 actions do return additional parameter "result" in the NamedValue[] below which you can make use of.
ActionExecutionResult[] results = actionService.executeActions(predicate, new Action[]{action});
NamedValue[] values=results[0].getActions()[0].getParameters();
You could find more on custom actions at the below link.
http://wiki.alfresco.com/wiki/Custom_Actions
Best Regards,
Shagul Khaja
If you are looking for another option and comfortable writing custom actions,
you could write an action to manage groups and call the action via webservice API.
With 2.1 actions do return additional parameter "result" in the NamedValue[] below which you can make use of.
ActionExecutionResult[] results = actionService.executeActions(predicate, new Action[]{action});
NamedValue[] values=results[0].getActions()[0].getParameters();
You could find more on custom actions at the below link.
http://wiki.alfresco.com/wiki/Custom_Actions
Best Regards,
Shagul Khaja
