[Design of JBoss jBPM] - deploy problem
by pgros
Hi i have a problem deploying a simple process... some hours ago it worked =( i think it depends on any jar file which is on the wrong place or something like that, any ideas?
String op =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
"<process-definition xmlns=\"urn:jbpm.org:jpdl-3.2\"" +
" name=\"UseTextoutput\">" +
" <start-state name=\"s1\">" +
" <transition to=\"s2\">" +
" </start-state>" +
" <end-state name=\"s2\"></end-state>" +
"</process-definition>";
jbpmContext.deployProcessDefinition(ProcessDefinition.parseXmlString(op));
leads to->
13:14:48,007 ERROR [STDERR] Caused by: org.jbpm.util.XmlException: couldn't parse xml
13:14:48,007 ERROR [STDERR] at org.jbpm.util.XmlUtil.parseXmlInputStream(XmlUtil.java:68)
13:14:48,007 ERROR [STDERR] at org.jbpm.graph.node.NodeTypes.initialiseNodeTypes(NodeTypes.java:65)
13:14:48,007 ERROR [STDERR] at org.jbpm.graph.node.NodeTypes.(NodeTypes.java:57)
13:14:48,023 ERROR [STDERR] ... 38 more
13:14:48,023 ERROR [STDERR] Caused by: java.lang.IllegalArgumentException: InputStream cannot be null
13:14:48,023 ERROR [STDERR] at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:120)
13:14:48,023 ERROR [STDERR] at org.jbpm.util.XmlUtil.parseXmlInputStream(XmlUtil.java:66)
13:14:48,023 ERROR [STDERR] ... 40 more
after running the function first time i get the following error when i run it until i restart the server
java.lang.NoClassDefFoundError: Could not initialize class org.jbpm.graph.action.ActionTypes
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4192773#4192773
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4192773
16 years, 1 month
[Design of JBoss/Tomcat Integration] - Re: java2ClassLoadingCompliance in AS5?
by adrian@jboss.org
I've applied the fix, but I'm seeing this warning while undeploying the test war
| 12:53:11,412 ERROR [[/bundled-myfaces-hellojsf]] Exception sending context destroyed event to listener instance of class org.jboss.web.jsf.integration.config.JBossJSFConfigureListener
| java.lang.NullPointerException
| at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListener.java:235)
| at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:3949)
| at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4615)
| at org.apache.catalina.core.ContainerBase.destroy(ContainerBase.java:1175)
| at org.apache.catalina.core.StandardContext.destroy(StandardContext.java:4705)
| 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:585)
| at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
| at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performUndeployInternal(TomcatDeployment.java:674)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performUndeploy(TomcatDeployment.java:647)
| at org.jboss.web.deployers.AbstractWarDeployment.stop(AbstractWarDeployment.java:480)
| at org.jboss.web.deployers.WebModule.stopModule(WebModule.java:134)
| at org.jboss.web.deployers.WebModule.stop(WebModule.java:101)
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4192756#4192756
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4192756
16 years, 1 month