1 Reply Latest reply on Feb 24, 2009 1:25 PM by santoshkumarsamala

    unable to login to jbpm cosole

    santoshkumarsamala

      I have configured jbpm with eclipse and jboss4.2.2 and mysql5.1.31.
      I have setup everything properly, database has been populated with default values, when i click on http://localhost:8080/jbpm-console/app/
      Iam able to the login screen, the problem is whenever i enter username/pwd for any user it is just redirecting me to error page
      with status
      HTTP Status 403 - Access to the requested resource has been denied

      do i need to map roles anywhere? what could be the solution for this?

        • 1. Re: unable to login to jbpm cosole
          santoshkumarsamala

          I got the solution for this, I have not uploaded all test data, when i have uploaded following data

          INSERT INTO JBPM_ID_GROUP VALUES(1,'G','sales','organisation',NULL);
          INSERT INTO JBPM_ID_GROUP VALUES(2,'G','admin','security-role',NULL);
          INSERT INTO JBPM_ID_GROUP VALUES(3,'G','user','security-role',NULL);
          INSERT INTO JBPM_ID_GROUP VALUES(4,'G','hr','organisation',NULL);
          INSERT INTO JBPM_ID_GROUP VALUES(5,'G','manager','security-role',NULL);
          INSERT INTO JBPM_ID_USER VALUES(1,'U','user','user@sample.domain','user');
          INSERT INTO JBPM_ID_USER VALUES(2,'U','manager','manager@sample.domain','manager');
          INSERT INTO JBPM_ID_USER VALUES(3,'U','admin','admin@sample.domain','admin');
          INSERT INTO JBPM_ID_USER VALUES(4,'U','shipper','shipper@sample.domain','shipper');
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(1,'M',NULL,NULL,2,4);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(2,'M',NULL,NULL,3,4);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(3,'M',NULL,NULL,4,4);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(4,'M',NULL,NULL,4,3);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(5,'M',NULL,NULL,1,3);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(6,'M',NULL,NULL,2,3);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(7,'M',NULL,NULL,3,3);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(8,'M',NULL,NULL,3,2);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(9,'M',NULL,NULL,2,2);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(10,'M',NULL,NULL,2,5);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(11,'M',NULL,'boss',2,1);
          INSERT INTO JBPM_ID_MEMBERSHIP VALUES(12,'M',NULL,NULL,1,1);
          


          It is working, when I type url http://localhost:8080/jbpm-console/app/upload

          Iam getting a single message "Process upload module is operational ", does it mean iam successful?