Re: [xwiki-users] Adding user to defaul group with appropriate rights through xml rpc.....

2010-03-09 Thread Dilipkumar Jadhav
Hi Nithya, As Jean Vincent pointed out, following would be the modified code: XWikiObject xobj = new XWikiObject(); //Class Name is XWikiGroups xobj.setClassName("XWiki.XWikiGroups"); //Host page to which we want to add the user is the Page which con

Re: [xwiki-users] Adding user to defaul group with appropriate rights through xml rpc.....

2010-03-09 Thread Jean-Vincent Drean
On Tue, Mar 9, 2010 at 6:28 PM, Nithya Vembu wrote: > > Hi Marius, > >   Thanks for the reply. > >   This is my code snippet which i tried before posting this post. > >            XWikiObject xobj = new XWikiObject(); >            xobj.setClassName("XWiki.XWikiAllGroups"); "XWiki.XWikiAllGroups"

Re: [xwiki-users] Adding user to defaul group with appropriate rights through xml rpc.....

2010-03-09 Thread Nithya Vembu
Hi Marius, Thanks for the reply. This is my code snippet which i tried before posting this post. XWikiObject xobj = new XWikiObject(); xobj.setClassName("XWiki.XWikiAllGroups"); xobj.setProperty("member", "test1"); rpc.storeObject(xobj);

Re: [xwiki-users] Adding user to defaul group with appropriate rights through xml rpc.....

2010-03-09 Thread Marius Dumitru Florea
Hi, Nithya Vembu wrote: > Hi All, > > I have created user through xml rpc. But the user dont have any rights > and the user not added in the default group. > how to add the user in XWiki All Group and give the rights through xml > rpc?? > Any idea.?? I surfed net and this nabbl

[xwiki-users] Adding user to defaul group with appropriate rights through xml rpc.....

2010-03-09 Thread Nithya Vembu
Hi All, I have created user through xml rpc. But the user dont have any rights and the user not added in the default group. how to add the user in XWiki All Group and give the rights through xml rpc?? Any idea.?? I surfed net and this nabble forum but i didnt get the solution.