[JBoss jBPM] - Trying to persist process instances - need some help
by terigox
Hi All,
I'm new to jBpm here and have been trying to follow some of the guides on the JBoss site as well as some examples included in the Jbpm distribution. I've successfully created some simple examples and am now trying to work with some DB persistence.
I am using Jboss 5, JBpm 3.3. The Mysql database has been created using the DB scripts included in the starter kit.
I have a simple process definition defined as follows:
| <process-definition xmlns="urn:jbpm.org:jpdl-3.2" name="TestProcess">
|
|
| <start-state name="start">
| <transition to="auction" name="to-auction"></transition>
| </start-state>
|
| <decision name="meets-minimum">
| <handler class="com.test.decision.AcceptBid"></handler>
| <transition to="end" name="yes"></transition>
| <transition to="auction" name="no"></transition>
| </decision>
|
| <state name="auction">
| <transition to="enter-bid" name="to-bid"></transition>
| </state>
|
| <task-node name="enter-bid">
| <task name="make-bid">
| <controller></controller>
| </task>
| <transition to="meets-minimum" name="to-meets-minimum"></transition>
| </task-node>
|
|
| <end-state name="end"></end-state>
|
|
| </process-definition>
|
I am trying to use the process by doing:
| JbpmConfiguration jbpmConfiguration = JbpmConfiguration.parseResource("jbpm.cfg.xml");
| JbpmContext jbpmContext = jbpmConfiguration.createJbpmContext();
|
| try{
| log.debug("Test main - Creating process definition.");
| ProcessDefinition processDefinition = ProcessDefinition.parseXmlResource("TestProcess/processdefinition.xml");
| log.debug("Test main - deploying process definition");
| jbpmContext.deployProcessDefinition(processDefinition);
| log.debug("Test main - Creating process instance");
| ProcessInstance processInstance = jbpmContext.newProcessInstance("TestProcess");
| log.debug("Test main - signaling process instance");
| log.debug("Test main - Process instance in state: "+ processInstance.getRootToken().getNode().getName());
| processInstance.signal();
| }
| finally
| {
| jbpmContext.close();
| }
|
The jbpm.cfg.xml is simple (following one of the examples)
| <jbpm-configuration>
| <jbpm-context>
| <service name='persistence' factory='org.jbpm.persistence.db.DbPersistenceServiceFactory' />
| </jbpm-context>
| </jbpm-configuration>
|
When I try to execute the code above, I get the following exception with this root cause:
| org.hibernate.PropertyAccessException: could not get a field value by reflection getter of org.jbpm.graph.def.Node.id
| org.hibernate.property.DirectPropertyAccessor$DirectGetter.get(DirectPropertyAccessor.java:58)
| org.hibernate.engine.UnsavedValueFactory.getUnsavedIdentifierValue(UnsavedValueFactory.java:67)
| org.hibernate.tuple.PropertyFactory.buildIdentifierProperty(PropertyFactory.java:67)
|
| Root Cause
|
| java.lang.IllegalArgumentException: Can not set long field org.jbpm.graph.def.GraphElement.id to org.jbpm.graph.node.MailNode
| sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:146)
| sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:150)
| sun.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:37)
| sun.reflect.UnsafeLongFieldAccessorImpl.getLong(UnsafeLongFieldAccessorImpl.java:42)
| sun.reflect.UnsafeLongFieldAccessorImpl.get(UnsafeLongFieldAccessorImpl.java:18)
| java.lang.reflect.Field.get(Field.java:358)
|
I get the same problem when I use the Hsql database as well.
What's puzzling me is that when I do not initialize my own context, the process seems to run fine (although my processes do not persist in my database).
Can anyone help shed light on this for me? Thanks for any help!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199247#4199247
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4199247
17 years, 3 months
[JBoss jBPM] - Re: findAllProcessDefinitions()
by giridhar_be
Hi Kukeltje,
Thanks for your help.. With your first answer now its clear to me, I should write my own code to show which processes I have to show for which users... In this case the user interface code always have to modify if new process definitions are adding....
But I am still thinking this is a draw back in JBPM. There should an enhancement this feature in JBPM.
Because, in the current functionality of JBPM, there is no way to restick only particular group of users to start the processdefinition.
lets say, I have a one task after processdifinition start and that task is assigned to a user.
start--->task assigned to a user ---> end
In this case anyone can start this process and assigns the task to that user.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199206#4199206
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4199206
17 years, 3 months
[JBoss jBPM] - org.hibernate.TransientObjectException
by rodosa
Hello!
I've a problem and I don't know how to solucionate. I've implemented a web service whose code is:
| @WebMethod
| @WebResult(targetNamespace = "next")
| public boolean next(@WebParam(name = "id_instance")Long id_instance)throws RemoteException{
| try {
| ProcessInstance instance=getJbpmContext().loadProcessInstanceForUpdate(id_instance);
|
| if(!instance.hasEnded()){
| Token token=new Token(instance);
| token.signal();
|
| jbpmContext.save(instance);
| jbpmContext.save(token);
| }
| }catch (Exception e) {
| System.out.println("Error invoking next WS");
| return false;
| }finally{
| jbpmContext.close();
| }
| System.out.println("Executed WS next");
| return true;
| }
|
This method only advance a step in my jbpm process definition, but when I do jbpmContext.close(), this exception it is thrown:
| 13:02:32,703 ERROR [DbPersistenceService] hibernate commit failed
| org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: org.jbpm.graph.exe.Token
| at org.hibernate.engine.ForeignKeys.getEntityIdentifierIfNotUnsaved(ForeignKeys.java:219)
| at org.hibernate.type.EntityType.getIdentifier(EntityType.java:397)
| at org.hibernate.type.ManyToOneType.isDirty(ManyToOneType.java:242)
| at org.hibernate.type.TypeFactory.findDirty(TypeFactory.java:597)
| at org.hibernate.persister.entity.AbstractEntityPersister.findDirty(AbstractEntityPersister.java:3123)
| at org.hibernate.event.def.DefaultFlushEntityEventListener.dirtyCheck(DefaultFlushEntityEventListener.java:479)
| at org.hibernate.event.def.DefaultFlushEntityEventListener.isUpdateNecessary(DefaultFlushEntityEventListener.java:204)
| at org.hibernate.event.def.DefaultFlushEntityEventListener.onFlushEntity(DefaultFlushEntityEventListener.java:127)
| at org.hibernate.event.def.AbstractFlushingEventListener.flushEntities(AbstractFlushingEventListener.java:196)
| at org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:76)
| at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:26)
| at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1000)
| at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:338)
| at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:106)
| at org.jbpm.persistence.db.DbPersistenceService.commit(DbPersistenceService.java:260)
| at org.jbpm.persistence.db.DbPersistenceService.close(DbPersistenceService.java:218)
| at org.jbpm.svc.Services.close(Services.java:223)
| at org.jbpm.JbpmContext.close(JbpmContext.java:139)
| at com.ideit.modules.cmmi.jbpm.requirements.session.JbpmSessionBean.next(JbpmSessionBean.java:178)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:597)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112)
| at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166)
| at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:47)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:79)
| at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:191)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:95)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:77)
| at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:110)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:46)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.wsf.container.jboss42.InvocationHandlerEJB3.invoke(InvocationHandlerEJB3.java:103)
| at org.jboss.ws.core.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:220)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.processRequest(RequestHandlerImpl.java:408)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:272)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.doPost(RequestHandlerImpl.java:189)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleHttpRequest(RequestHandlerImpl.java:122)
| at org.jboss.wsf.stack.jbws.EndpointServlet.service(EndpointServlet.java:84)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
| at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
| at java.lang.Thread.run(Thread.java:619)
| 13:02:32,765 ERROR [Services] problem closing service 'persistence'
| org.jbpm.persistence.JbpmPersistenceException: hibernate commit failed
| at org.jbpm.persistence.db.DbPersistenceService.close(DbPersistenceService.java:223)
| at org.jbpm.svc.Services.close(Services.java:223)
| at org.jbpm.JbpmContext.close(JbpmContext.java:139)
| at com.ideit.modules.cmmi.jbpm.requirements.session.JbpmSessionBean.next(JbpmSessionBean.java:178)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:597)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112)
| at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166)
| at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:47)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:79)
| at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:191)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:95)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:77)
| at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:110)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:46)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.wsf.container.jboss42.InvocationHandlerEJB3.invoke(InvocationHandlerEJB3.java:103)
| at org.jboss.ws.core.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:220)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.processRequest(RequestHandlerImpl.java:408)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:272)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.doPost(RequestHandlerImpl.java:189)
| at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleHttpRequest(RequestHandlerImpl.java:122)
| at org.jboss.wsf.stack.jbws.EndpointServlet.service(EndpointServlet.java:84)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
| at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
| at java.lang.Thread.run(Thread.java:619)
| Caused by: org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: org.jbpm.graph.exe.Token
| at org.hibernate.engine.ForeignKeys.getEntityIdentifierIfNotUnsaved(ForeignKeys.java:219)
| at org.hibernate.type.EntityType.getIdentifier(EntityType.java:397)
| at org.hibernate.type.ManyToOneType.isDirty(ManyToOneType.java:242)
| at org.hibernate.type.TypeFactory.findDirty(TypeFactory.java:597)
| at org.hibernate.persister.entity.AbstractEntityPersister.findDirty(AbstractEntityPersister.java:3123)
| at org.hibernate.event.def.DefaultFlushEntityEventListener.dirtyCheck(DefaultFlushEntityEventListener.java:479)
| at org.hibernate.event.def.DefaultFlushEntityEventListener.isUpdateNecessary(DefaultFlushEntityEventListener.java:204)
| at org.hibernate.event.def.DefaultFlushEntityEventListener.onFlushEntity(DefaultFlushEntityEventListener.java:127)
| at org.hibernate.event.def.AbstractFlushingEventListener.flushEntities(AbstractFlushingEventListener.java:196)
| at org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:76)
| at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:26)
| at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1000)
| at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:338)
| at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:106)
| at org.jbpm.persistence.db.DbPersistenceService.commit(DbPersistenceService.java:260)
| at org.jbpm.persistence.db.DbPersistenceService.close(DbPersistenceService.java:218)
| ... 55 more
|
Could somebody explain why and how I could fix it?
Thans in advance
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199200#4199200
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4199200
17 years, 3 months
[JBoss jBPM] - Re: cannot login in jbpm-console using jbpm-3.3.0 mysql jbos
by jeremiah.lumontod
Additional error logs from console:
14:49:25,703 ERROR [STDERR] Jan 2, 2009 2:49:25 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/gravel-1.0.0.GA.jar!/MET
A-INF/gravel-compat.taglib.xml
14:49:25,750 ERROR [STDERR] Jan 2, 2009 2:49:25 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/gravel-1.0.0.GA.jar!/MET
A-INF/gravel-data.taglib.xml
14:49:25,765 ERROR [STDERR] Jan 2, 2009 2:49:25 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/gravel-1.0.0.GA.jar!/MET
A-INF/gravel-nav.taglib.xml
14:49:25,796 ERROR [STDERR] Jan 2, 2009 2:49:25 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/gravel-1.0.0.GA.jar!/MET
A-INF/gravel-simple.taglib.xml
14:49:26,296 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-console-jbpm4jsf-3.3
.0.GA.jar!/META-INF/core.taglib.xml
14:49:26,375 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-console-jbpm4jsf-3.3
.0.GA.jar!/META-INF/identity.taglib.xml
14:49:26,390 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-console-jbpm4jsf-3.3
.0.GA.jar!/META-INF/tf-compat.taglib.xml
14:49:26,406 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-console-jbpm4jsf-3.3
.0.GA.jar!/META-INF/tf.taglib.xml
14:49:26,421 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-console-jbpm4jsf-3.3
.0.GA.jar!/META-INF/tfl-compat.taglib.xml
14:49:26,437 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-console-jbpm4jsf-3.3
.0.GA.jar!/META-INF/tfl.taglib.xml
14:49:26,484 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-facelets-1.1.14.jar!
/META-INF/jsf-core.taglib.xml
14:49:26,515 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-facelets-1.1.14.jar!
/META-INF/jsf-html.taglib.xml
14:49:26,546 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-facelets-1.1.14.jar!
/META-INF/jsf-ui.taglib.xml
14:49:26,578 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-facelets-1.1.14.jar!
/META-INF/jstl-core.taglib.xml
14:49:26,578 ERROR [STDERR] Jan 2, 2009 2:49:26 PM com.sun.facelets.compiler.Tag
LibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/jboss-4.2.2.GA/server/default/deploy/jbpm
/jbpm-enterprise-bundle.ear/jsf-console.war/WEB-INF/lib/jsf-facelets-1.1.14.jar!
/META-INF/jstl-fn.taglib.xml
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199196#4199196
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4199196
17 years, 3 months
[JBoss jBPM] - Re: cannot login in jbpm-console using jbpm-3.3.0 mysql jbos
by jeremiah.lumontod
Hello Ronald
here's the message when i login:
HTTP Status 403 - Access to the requested resource has been denied
type Status report
message Access to the requested resource has been denied
description Access to the specified resource (Access to the requested resource has been denied) has been forbidden.
JBossWeb/2.0.1.GA
my guess is my javaserver faces configuration (web.xml and faces-config.xml). i just started playing with jbpm and i kinda like it. my future plan is to integrate it with seam. but im currently stocked in here.
can you help what might be the problem? i played around with version 3.2.2 of jbpm using hypersonic and eclipse 3.2.1 and everything is good, now i shifted to eclipse 3.4.1 and jbpm 3.3.0 using mysql since i like what upgrades / additional stuff they've added. deploying is good, accessing the web is my problem.
thank you for your time
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199194#4199194
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4199194
17 years, 3 months