Hi, So you just want to automate the creation of 200 users.
How do you have those users stored? In a text file, comma separated? If so, then you can attach the file to an XWiki page. After that, you need to write a script (either velocity, or groovy) as admin in which you programatically get the attached file's contents and you add each user described in that file. To add an user, you need to create a page and add to it an object of class XWiki.XWikiUsers. You set the user name, password and other fields in that object and then you save the page. Alternatively, I think you could use XWiki's REST API [1] and the linux curl command to do it from a command line instead of using scripting in XWiki. Whichever you like best, I wish you happy coding. -Eduard [1] http://platform.xwiki.org/xwiki/bin/view/Features/XWikiRESTfulAPI On Thu, Feb 16, 2012 at 8:06 PM, modularre-333 <[email protected]>wrote: > I do not I have to login in the wiki and register the user, > > my application should do it for me, > > If I have 200 people already created and I want to add to the wiki, > > I should not review person by person who is in the wiki or not, > > my plugin would take care to create these users in the wiki. > > > I hope to be more clear. > > -- > View this message in context: > http://xwiki.475771.n2.nabble.com/plugin-xwiki-tp7285335p7291816.html > Sent from the XWiki- Dev mailing list archive at Nabble.com. > _______________________________________________ > devs mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/devs > _______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs

