cancel
Showing results for 
Search instead for 
Did you mean: 

Partially deployed BAR file?

mgriffith
Champ in-the-making
Champ in-the-making
I am deploying a bar file generated with the Eclipse plug in. Using Activiti 5.5, when I upload the bar file using probe, I see this error in the tomcat log file.

Jul 7, 2011 2:17:51 PM org.activiti.engine.impl.bpmn.deployer.BpmnDeployer deploy
INFO: Processing resource TestSpringConfig.bpmn20.xml
Jul 7, 2011 2:17:51 PM org.activiti.engine.impl.bpmn.parser.BpmnParse parseDefinitionsAttributes
INFO: XMLSchema currently not supported as typeLanguage
Jul 7, 2011 2:17:51 PM org.activiti.engine.impl.bpmn.parser.BpmnParse parseDefinitionsAttributes
INFO: XPath currently not supported as expressionLanguage
Jul 7, 2011 2:17:51 PM org.activiti.engine.impl.bpmn.deployer.BpmnDeployer deploy
INFO: Processing resource TestSpringConfig.png
Jul 7, 2011 2:18:37 PM org.activiti.engine.impl.bpmn.deployer.BpmnDeployer deploy
INFO: Processing resource TestSpringConfig.bpmn20.xml
Jul 7, 2011 2:18:37 PM org.activiti.engine.impl.bpmn.parser.BpmnParse parseDefinitionsAttributes
INFO: XMLSchema currently not supported as typeLanguage
Jul 7, 2011 2:18:37 PM org.activiti.engine.impl.bpmn.parser.BpmnParse parseDefinitionsAttributes
INFO: XPath currently not supported as expressionLanguage
Jul 7, 2011 2:18:37 PM org.activiti.engine.impl.bpmn.deployer.BpmnDeployer deploy

No error appears in probe.  The process shows up in explorer as Version 2 of my process (this is an iteration) but when I try to launch the workflow, nothing happens and no errors appear in the tomcat log.  Any ideas what is going on here?

BPMN file is attached.

Any thoughts/replies would be welcome.

Thanks in advance!
4 REPLIES 4

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
I do not see any error…

mgriffith
Champ in-the-making
Champ in-the-making
The thing that concerns me is:

INFO: XMLSchema currently not supported as typeLanguage
INFO: XPath currently not supported as expressionLanguage

When starting the process from the explorer, no exception is thrown in the tomcat logs, and no exception is presented through explorer, however the task is not fired off. I know this from System.out.println() statements in the method that is called from the Service task expression.

As an experiment, I created a simple 1 task project that simply consisted of a user task assigned to candidate group "management" and deployed it. During the deployment, I see the same warnings/info regarding XMLSchema and XMLPath. However this process works as expected. When fired off in explorer, it starts and I can see the process running in probe.

Why would my original process not fire the task and not throw any exception? I am stumped.  Any/all replies appreciated.

mgriffith
Champ in-the-making
Champ in-the-making
Issue resolved. Somehow I removed the $ from the expression used for my JavaService task. How this did not throw an exception, but quietly failed – causing my chase myself in circles for 3 days is disturbing.

Thanks for all who read my post, and for the reply.

MG

jbarrez
Star Contributor
Star Contributor
The warnings
INFO: XMLSchema currently not supported as typeLanguage
INFO: XPath currently not supported as expressionLanguage

are always there, basically because this is the default XSD setting … Since we do not support the default according to the spec (ie we use java expressions), the parsers logs this warning if you don't override the settings at the top of the XML file. Nothing to worry about, all works perfect without changing them 🙂