5 Replies Latest reply on May 23, 2003 9:12 AM by raphael2

    HTTP ERROR: 500 null; CausedByException is: null

    raphael2

      I configured the jboss to work with the mysql, but when I try to login with using this parameters cause this erros:

      HTTP ERROR: 500 null; CausedByException is: null

      My login config.xml


      <!-- ============================== -->
      <!-- == JBPM CHANGES BEGIN == -->
      <!-- == (replaced the 'other' == -->
      <!-- == security domain login == -->
      <!-- == module by one that == -->
      <!-- == uses the database) == -->
      <!-- ============================== -->
      <application-policy name = "jbpm-domain">

      <login-module code = "org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="required">
      <module-option name = "dsJndiName">java:/MySqlDb</module-option>
      <module-option name = "principalsQuery">select name from jbpm_user where name=?</module-option>
      <module-option name = "rolesQuery">select role, rolegroup from jbpm_role where username=?</module-option>
      </login-module>

      </application-policy>
      <!-- ============================== -->
      <!-- == JBPM CHANGES END == -->
      <!-- ============================== -->

      I change this files (standardjbosscmp-jdbc.xml and standardjaws.xml) in the

      java:/MySqlDb
      <datasource-mapping>mySQL</datasource-mapping>


      What I can do ?