standalone Java client with bonita-client-5.9.jar works but the same Java client in JBoss 7.1 does not work

1
+1
-1

A standalone Java client built in with bonita-client-5.9.jar library works fine but when the same Java client is moved to the JEE architecture running on JBoss 7.1 environment does not work. Show log message: javax.security.auth.login.FailedLoginException: Password Incorrect/Password Required

Java code:

public class BPMSService {
        /**
         * API
         */

        private QueryRuntimeAPI api;

        /**
         * login
         * @throws LoginException
         */

        public void bonitaLogin() throws LoginException {
                LoginContext bonitaLoginContext = new LoginContext("BonitaStore", new SimpleCallbackHandler("bonitaengine", ""));
                bonitaLoginContext.login();
                setApi(AccessorUtil.getQueryRuntimeAPI());
               
        }

        static {
                System.setProperty(BonitaConstants.API_TYPE_PROPERTY, "REST");
                System.setProperty(BonitaConstants.REST_SERVER_ADDRESS_PROPERTY, "http://bpms/bonita-server-rest");
                System.setProperty(BonitaConstants.JAAS_PROPERTY, "C:\\dev\\sistemas\\hw-bonita\\src\\main\\resources\\jaas-standard.cfg");
        }
       
        /**
         * @return the api
         */

        public QueryRuntimeAPI getApi() {
                return api;
        }

        /**
         * @param api the api to set
         */

        public void setApi(QueryRuntimeAPI api) {
                this.api = api;
        }
       
        public static void main(String[] args) throws LoginException, InstanceNotFoundException {
                new BPMSService().bonitaLogin();
        }

       
}

jaas-standart.cfg

BonitaAuth {
  org.ow2.bonita.identity.auth.BonitaIdentityLoginModule required;
};
BonitaStore {
  org.ow2.bonita.identity.auth.BonitaRESTLoginModule required restUser="restuser" restPassword="restbpm";
};
BonitaRESTServer {
  org.ow2.bonita.identity.auth.BonitaRESTServerLoginModule required logins="restuser" passwords="restbpm" roles="restuser";
};

Error message:

11:12:16,021 ERROR [stderr] (http--0.0.0.0-8086-2) javax.security.auth.login.FailedLoginException: Password Incorrect/Password Required

11:12:16,024 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.security.auth.spi.UsernamePasswordLoginModule.login(UsernamePasswordLoginModule.java:270)

11:12:16,026 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.security.auth.spi.UsersRolesLoginModule.login(UsersRolesLoginModule.java:155)

11:12:16,028 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:16,030 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:16,031 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:16,033 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:16,035 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)

11:12:16,036 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)

11:12:16,037 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)

11:12:16,038 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.security.AccessController.doPrivileged(Native Method)

11:12:16,039 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)

11:12:16,040 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.login(LoginContext.java:579)

11:12:16,041 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.bpms.BPMSService.bonitaLogin(BPMSService.java:38)

11:12:16,042 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.bpms.BPMSService.versaoConcluida(BPMSService.java:59)

11:12:16,043 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:16,044 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:16,044 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:16,045 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:16,046 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ManagedReferenceMethodInterceptorFactory$ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodInterceptorFactory.java:72)

11:12:16,048 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,049 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:374)

11:12:16,050 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java:127)

11:12:16,051 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:135)

11:12:16,052 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:16,053 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,054 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterceptor.java:53)

11:12:16,055 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:16,056 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,057 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47)

11:12:16,058 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,059 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:82)

11:12:16,061 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,062 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:21)

11:12:16,063 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,064 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:16,065 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherInterceptor.java:53)

11:12:16,066 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,067 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:51)

11:12:16,068 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,069 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:202)

11:12:16,070 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:306)

11:12:16,071 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:190)

11:12:16,071 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,072 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)

11:12:16,074 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,074 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:59)

11:12:16,075 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,076 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)

11:12:16,077 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,078 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupInterceptor.java:32)

11:12:16,079 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,080 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInterceptor.java:45)

11:12:16,081 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,082 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:16,083 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:165)

11:12:16,083 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:173)

11:12:16,084 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,085 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:16,086 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:72)

11:12:16,087 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.bpms.BPMSService$$$view1.versaoConcluida(Unknown Source)

11:12:16,088 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService.obterTarefasVersosConcluidas(RelatorioVersaoService.java:106)

11:12:16,089 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService.obterTarefasPorTipoRelatorio(RelatorioVersaoService.java:82)

11:12:16,090 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService.processarRelatorio(RelatorioVersaoService.java:33)

11:12:16,091 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:16,092 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:16,092 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:16,093 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:16,094 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ManagedReferenceMethodInterceptorFactory$ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodInterceptorFactory.java:72)

11:12:16,095 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,096 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:374)

11:12:16,097 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java:127)

11:12:16,098 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:135)

11:12:16,099 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:16,100 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,101 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterceptor.java:53)

11:12:16,102 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:16,103 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,104 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47)

11:12:16,105 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,105 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:82)

11:12:16,107 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,107 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:21)

11:12:16,108 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,109 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:16,110 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherInterceptor.java:53)

11:12:16,111 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,112 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:51)

11:12:16,113 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,114 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:228)

11:12:16,115 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:304)

11:12:16,116 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:190)

11:12:16,116 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,117 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)

11:12:16,119 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,119 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:59)

11:12:16,120 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,121 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)

11:12:16,122 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,123 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupInterceptor.java:32)

11:12:16,124 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,125 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInterceptor.java:45)

11:12:16,126 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,127 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:16,128 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:165)

11:12:16,129 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:173)

11:12:16,129 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:16,130 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:16,131 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:72)

11:12:16,132 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService$$$view3.processarRelatorio(Unknown Source)

11:12:16,133 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.controller.RelatorioFaces.pesquisar(RelatorioFaces.java:129)

11:12:16,134 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:16,135 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:16,136 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:16,137 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:16,137 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.el.parser.AstValue.invoke(AstValue.java:262)

11:12:16,138 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:278)

11:12:16,139 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMethodExpression.java:39)

11:12:16,140 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java:50)

11:12:16,141 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)

11:12:16,142 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)

11:12:16,143 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)

11:12:16,144 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.UICommand.broadcast(UICommand.java:315)

11:12:16,144 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)

11:12:16,145 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)

11:12:16,146 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:81)

11:12:16,147 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)

11:12:16,148 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)

11:12:16,148 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

11:12:16,149 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329)

11:12:16,150 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248)

11:12:16,151 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62)

11:12:16,152 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280)

11:12:16,153 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248)

11:12:16,154 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275)

11:12:16,155 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161)

11:12:16,156 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:489)

11:12:16,156 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmCloserValve.java:50)

11:12:16,157 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153)

11:12:16,158 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155)

11:12:16,159 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)

11:12:16,160 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)

11:12:16,161 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368)

11:12:16,162 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877)

11:12:16,163 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671)

11:12:16,164 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)

11:12:16,164 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.Thread.run(Thread.java:662)

11:12:18,861 ERROR [stderr] (http--0.0.0.0-8086-2)      [LoginContext]: login ignored

11:12:18,901 ERROR [stderr] (http--0.0.0.0-8086-2)      [LoginContext]: login REQUIRED failure

11:12:18,902 ERROR [stderr] (http--0.0.0.0-8086-2)      [LoginContext]: abort success

11:12:18,903 ERROR [stderr] (http--0.0.0.0-8086-2)      [LoginContext]: abort success

11:12:18,903 ERROR [stderr] (http--0.0.0.0-8086-2) javax.security.auth.login.FailedLoginException: Password Incorrect/Password Required

11:12:18,904 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.security.auth.spi.UsernamePasswordLoginModule.login(UsernamePasswordLoginModule.java:270)

11:12:18,905 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.security.auth.spi.UsersRolesLoginModule.login(UsersRolesLoginModule.java:155)

11:12:18,906 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:18,907 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:18,908 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:18,909 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:18,910 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)

11:12:18,910 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)

11:12:18,911 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)

11:12:18,912 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.security.AccessController.doPrivileged(Native Method)

11:12:18,913 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)

11:12:18,913 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.security.auth.login.LoginContext.login(LoginContext.java:579)

11:12:18,914 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.bpms.BPMSService.bonitaLogin(BPMSService.java:38)

11:12:18,915 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.bpms.BPMSService.versaoConcluida(BPMSService.java:59)

11:12:18,916 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:18,917 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:18,918 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:18,919 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:18,919 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ManagedReferenceMethodInterceptorFactory$ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodInterceptorFactory.java:72)

11:12:18,921 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,922 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:374)

11:12:18,923 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java:127)

11:12:18,924 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:135)

11:12:18,925 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:18,927 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,928 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterceptor.java:53)

11:12:18,929 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:18,930 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,931 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47)

11:12:18,932 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,933 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:82)

11:12:18,934 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,935 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:21)

11:12:18,936 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,937 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:18,938 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherInterceptor.java:53)

11:12:18,940 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,941 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:51)

11:12:18,942 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,943 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:202)

11:12:18,944 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:306)

11:12:18,945 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:190)

11:12:18,946 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,947 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)

11:12:18,948 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,949 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:59)

11:12:18,950 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,950 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)

11:12:18,951 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,952 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupInterceptor.java:32)

11:12:18,953 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,954 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInterceptor.java:45)

11:12:18,955 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,956 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:18,957 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:165)

11:12:18,958 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:173)

11:12:18,958 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,959 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:18,960 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:72)

11:12:18,961 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.bpms.BPMSService$$$view1.versaoConcluida(Unknown Source)

11:12:18,962 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService.obterTarefasVersosConcluidas(RelatorioVersaoService.java:106)

11:12:18,963 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService.obterTarefasPorTipoRelatorio(RelatorioVersaoService.java:82)

11:12:18,964 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService.processarRelatorio(RelatorioVersaoService.java:33)

11:12:18,965 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:18,966 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:18,967 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:18,968 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:18,969 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ManagedReferenceMethodInterceptorFactory$ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodInterceptorFactory.java:72)

11:12:18,970 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,971 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:374)

11:12:18,972 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java:127)

11:12:18,973 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:135)

11:12:18,974 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:18,975 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,976 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterceptor.java:53)

11:12:18,976 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:36)

11:12:18,977 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,978 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47)

11:12:18,979 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,980 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:82)

11:12:18,981 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,982 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:21)

11:12:18,983 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,984 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:18,985 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherInterceptor.java:53)

11:12:18,986 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,987 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:51)

11:12:18,988 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,988 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:228)

11:12:18,989 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:304)

11:12:18,990 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:190)

11:12:18,991 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,992 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)

11:12:18,993 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,994 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:59)

11:12:18,995 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,996 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)

11:12:18,997 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:18,998 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupInterceptor.java:32)

11:12:18,999 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:19,000 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInterceptor.java:45)

11:12:19,001 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:19,001 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:19,002 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:165)

11:12:19,003 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:173)

11:12:19,004 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:288)

11:12:19,005 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)

11:12:19,006 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:72)

11:12:19,007 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.business.bo.RelatorioVersaoService$$$view3.processarRelatorio(Unknown Source)

11:12:19,008 ERROR [stderr] (http--0.0.0.0-8086-2)      at br.jus.tjce.divtec.controller.RelatorioFaces.pesquisar(RelatorioFaces.java:129)

11:12:19,008 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

11:12:19,009 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

11:12:19,010 ERROR [stderr] (http--0.0.0.0-8086-2)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

11:12:19,011 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.reflect.Method.invoke(Method.java:597)

11:12:19,012 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.el.parser.AstValue.invoke(AstValue.java:262)

11:12:19,012 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:278)

11:12:19,013 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMethodExpression.java:39)

11:12:19,014 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java:50)

11:12:19,015 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)

11:12:19,016 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)

11:12:19,017 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)

11:12:19,018 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.UICommand.broadcast(UICommand.java:315)

11:12:19,018 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)

11:12:19,019 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)

11:12:19,020 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:81)

11:12:19,021 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)

11:12:19,022 ERROR [stderr] (http--0.0.0.0-8086-2)      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)

11:12:19,022 ERROR [stderr] (http--0.0.0.0-8086-2)      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

11:12:19,023 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329)

11:12:19,024 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248)

11:12:19,025 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62)

11:12:19,026 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280)

11:12:19,027 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248)

11:12:19,028 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275)

11:12:19,028 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161)

11:12:19,029 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:489)

11:12:19,030 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmCloserValve.java:50)

11:12:19,031 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153)

11:12:19,032 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155)

11:12:19,033 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)

11:12:19,034 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)

11:12:19,034 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368)

11:12:19,035 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877)

11:12:19,036 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671)

11:12:19,037 ERROR [stderr] (http--0.0.0.0-8086-2)      at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)

11:12:19,038 ERROR [stderr] (http--0.0.0.0-8086-2)      at java.lang.Thread.run(Thread.java:662)
No answers yet.
Notifications