[jboss-user] [JBoss jBPM] - Implementing Ad-Hoc workflow with JBPM

2007-04-25 Thread hashir
Hi,

We are evaluating JBPM. It looks nice but can we also implement Ad-Hoc work 
flows with JBPM? Have any body tried that before? or have any idea regarding 
that? 

thanks,

Hashir.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4040515#4040515

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040515
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Changes to Task object not reflected in DB

2007-04-19 Thread hashir
My fault :). The userid was null  jbpm correctly updated DB with null.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4038719#4038719

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038719
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jbpm-console example in jBPM 3.2 not working

2007-04-18 Thread hashir
 No, but I downloaded 3.1  it's example is working. 


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4038322#4038322

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038322
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Changes to Task object not reflected in DB

2007-04-18 Thread hashir
Hi,

   I am running into a strange problem. It seems that I can not assign a user 
to a task with the code. The task below contains a swimlane as well i.e. 

  | swimlane name=Initiator /
  | 

but when I try to assign an actor to this swimlane the change is not affected 
to the database ( Oracle 10g).


  |  try
  | {
  |
  | ProcessDefinition prcoessDefinition = 
jbpmContext.getGraphSession().findLatestProcessDefinition( 
LeaveApplicationProcess );
  | 
  | ProcessInstance process = new ProcessInstance( 
prcoessDefinition );
  | TaskInstance applyForLeaveTask = 
process.getTaskMgmtInstance().createStartTaskInstance();
  | applyForLeaveTask.setActorId( user );
  | applyForLeaveTask.getSwimlaneInstance().setActorId( user );
  | 
  | /* remaining code goes here */
  | 
  | // Task completed.
  | applyForLeaveTask.end();
  | 
  | jbpmContext.save( process );
  | } 
  | finally 
  | {
  | jbpmContext.close();
  | }
  | 

The log is as follows:

 
  | [WARN] ProxyWarnLog - Narrowing proxy to class 
org.jbpm.graph.node.StartState - this operation breaks ==
  | [WARN] ProxyWarnLog - Narrowing proxy to class org.jbpm.graph.node.TaskNode 
- this operation breaks ==
  | [WARN] ProxyWarnLog - Narrowing proxy to class org.jbpm.graph.node.TaskNode 
- this operation breaks ==
  | [WARN] ProxyWarnLog - Narrowing proxy to class 
org.jbpm.graph.node.StartState - this operation breaks ==
  | [WARN] ProxyWarnLog - Narrowing proxy to class org.jbpm.graph.node.TaskNode 
- this operation breaks ==
  | 

Any idea?


Hashir Ahmed

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4038392#4038392

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038392
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jbpm-console example in jBPM 3.2 not working

2007-04-18 Thread hashir

I configured Jboss to use proxy server  it worked.

Thanks Martin.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4038714#4038714

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038714
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: problem with the tutorial

2007-04-10 Thread hashir
If you have downloaded jbpm-jpdl-3.2.GA then try this:

http://localhost:8080/jbpm-console




Hashir.





View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4035998#4035998

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035998
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jbpm-console example in jBPM 3.2 not working

2007-04-03 Thread hashir
Hello,

I am evaluating jBPM 3.2. I downloaded the latest release of jBPM 3.2 suite  
tried to run the jbpm-console example.

I looged in successfully but received this error when tried to create an 
instance of web sales order process from the process list page.

Note: I am using  JDK 1.5.3

Stack trace:

javax.faces.FacesException: Stream error while reading XML: www.w3.org
at com.ctc.wstx.sr.StreamScanner.throwFromIOE(StreamScanner.java:522)
at com.ctc.wstx.sr.WstxStreamReader.next(WstxStreamReader.java:978)
at 
org.jbpm.webapp.tag.jbpm.ui.XmlPrinter.encodeBegin(XmlPrinter.java:113)
at 
org.jbpm.webapp.tag.jbpm.ui.ComponentBase.doEncode(ComponentBase.java:31)
at 
org.jbpm.webapp.tag.jbpm.ui.ComponentBase.doEncode(ComponentBase.java:58)
at org.jbpm.webapp.tag.jbpm.ui.Tab.encodeChildren(Tab.java:112)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:884)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:890)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:890)
at 
com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:578)
at 
org.jbpm.webapp.application.JbpmViewHandler.renderView(JbpmViewHandler.java:58)
at 
com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:524)
at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
at java.lang.Thread.run(Thread.java:595)


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4033912#4033912

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4033912
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user