-
1. Re: GWT still raises login exceptions
faite Mar 27, 2009 10:26 AM (in response to dimar1975)I have the same problem and the log show this
eryModule - first pass
2009-03-27 10:24:25,760 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2009-03-27 10:24:35,760 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Fri, 27 Mar 2009 10:24:35>
2009-03-27 10:24:35,760 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
2009-03-27 10:24:35,760 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass -
2. Re: GWT still raises login exceptions
faite Mar 27, 2009 10:31 AM (in response to dimar1975)When I install the jbpm4 I got this exception,
$ java -jar jbpm-installer-4.0.0-SNAPSHOT.jar
com.izforge.izpack.installer.ResourceNotFoundException: Cannot find named Resource: '/res/userInputLang.xml_eng' AND '/res/userInputLang.xml_eng_eng'
at com.izforge.izpack.installer.ResourceManager.getLanguageResourceString(Unknown Source)
at com.izforge.izpack.installer.ResourceManager.getInputStream(Unknown Source)
at com.izforge.izpack.panels.UserInputPanel.init(Unknown Source)
at com.izforge.izpack.panels.UserInputPanel.panelActivate(Unknown Source)
at com.izforge.izpack.installer.InstallerFrame.switchPanel(Unknown Source)
at com.izforge.izpack.installer.InstallerFrame.navigateNext(Unknown Source)
at com.izforge.izpack.installer.InstallerFrame.navigateNext(Unknown Source)
at com.izforge.izpack.installer.InstallerFrame$NavigationHandler.actionPerformed(Unknown Source)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2012)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2335)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:404)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:253)
at java.awt.Component.processMouseEvent(Component.java:6101)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3276)
at java.awt.Component.processEvent(Component.java:5866)
at java.awt.Container.processEvent(Container.java:2105)
at java.awt.Component.dispatchEventImpl(Component.java:4462)
at java.awt.Container.dispatchEventImpl(Container.java:2163)
at java.awt.Component.dispatchEvent(Component.java:4288)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4461)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4125)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4055)
at java.awt.Container.dispatchEventImpl(Container.java:2149)
at java.awt.Window.dispatchEventImpl(Window.java:2478)
at java.awt.Component.dispatchEvent(Component.java:4288)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:604)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:275)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:200)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:185)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:177)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:138)
is this related with the login problem? -
3. Re: GWT still raises login exceptions
heiko.braun Apr 27, 2009 6:49 AM (in response to dimar1975)No, the jbpm4 installer error you see is not related to the login problem.
Since the console in jbpm3 is merely a prototype, you should switch to jbpm4.
What version of jbpm4 did you use? The JAAS domain for the console is configured in deploy/jbpm/jbpm-service.sar/META-INF/jboss-service.xml
Beginning with 4.0.0.Beta1 it uses the DB login module that points to the JbpmDS:<!-- Authenticate against the Identiy database --> <jaas:login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="required"> <jaas:module-option name="dsJndiName">java:/JbpmDS</jaas:module-option> <jaas:module-option name="principalsQuery"> SELECT PASSWORD_ FROM JBPM_ID_USER WHERE ID_=? </jaas:module-opt ion> <jaas:module-option name="rolesQuery"> SELECT g.NAME_ ,'Roles' FROM JBPM_ID_USER u, JBPM_ID_MEMBERSHIP m, JBPM_ID_GROUP g WHERE g.TYPE_='security-role' AND m.GROUP_ = g.DBID_ AND m.USER_ = u.DBID_ AND u.ID_=? </jaas:module-optio n> </jaas:login-module>