2 Replies Latest reply on Jun 22, 2008 9:29 AM by kukeltje

    HTTP Status 403 - Access to the requested resource has been

    alok0007_07

      I m facing a problem. I have created some users in JBPM application and i have assigned some task to each user and I want that each user can see only his own task not of others.

      But when i logged in with the users i created , i got the taks of other users too...

      I m facing the following error while logging in after creating new group and user...

      HTTP Status 403 - Access to the requested resource has been denied

      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@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..