[jboss-user] [JBoss jBPM] - Re: HOw to create user so that no one can see others tasks..
alok0007_07
do-not-reply at jboss.com
Fri Jun 20 02:21:05 EDT 2008
i do the following for new group and user creation :
1) create a group of name 'guest'
insert into JBPM_ID_GROUP (ID_,CLASS_,NAME_,TYPE_)
values(812,'G','guest','security-role');
2) Then create a user of name 'user'
insert into JBPM_ID_USER (ID_,CLASS_,NAME_,EMAIL_,PASSWORD_)
values(123,'U','guest','guest at sample.domain','shipper');
3) Then insert into membership table
insert into JBPM_ID_MEMBERSHIP (ID_,CLASS_,USER_,GROUP_)
values(52,'M',812, 123);
But it gives the same error as i mentioned ... Is anything I left to do ...
Please suggest....waiting for reply..
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4159444#4159444
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4159444
More information about the jboss-user
mailing list