[jBPM] - signal event doesn't work from REST API
by Rudi Fisher
Rudi Fisher [https://community.jboss.org/people/rudi_fisher] created the discussion
"signal event doesn't work from REST API"
To view the discussion, visit: https://community.jboss.org/message/649256#649256
--------------------------------------------------------------
I want to use REST API to call signal. There is some implementation in ProcessMgmtFacade of gwt-console-server for this. I see the source code and I finelly found this in CommandDelegate of jbpm-gwt-core:
public void signalExecution(String executionId, String signal) {
ksession.getProcessInstance(new Long(executionId)).signalEvent("signal", signal);
}
This doesn't fulfil my requirements so I made changes to this class recompile and redeploy. This step is OK, because I made some other changes about this REST API (start process with params) and everythings work fins, so I think the problem is not in this my changed implementation of CommandDelegate. New implementation is:
public void signalExecution(String executionId, String eventType, String eventValue) {
ksession.getProcessInstance(new Long(executionId)).signalEvent(eventType, eventValue);
}
I took example of signal event from original examples to be sure that process is designed OK. I took BPMN2-EventBasedSplit.bpmn2. I tested in Eclipse and works fine - after signal call, process cointinued and finally finished. I deployed this process into my Guvnor repo and started by GWT console. Process stopped and waits at signal nodes (see attached picture).
https://community.jboss.org/servlet/JiveServlet/showImage/2-649256-17846/... https://community.jboss.org/servlet/JiveServlet/downloadImage/2-649256-17...
At this point I wanted to push process by send signal event by REST API with new implementation. Method signalExecution in CommandDelegate is called OK and this method take correct process instance (I have log line there to see process instance). But it seems signalEvent on process instance doesn't work. I'm using the same parameters for signal event in Eclipse and in CommandDelegate. I'm confused about what is different between execution in unit test in Eclipse and at server. I made many tests and examples but my probem has no solution to this day. I found some discussion about similar issues but this not solve this problem.
Working unit test in Eclipse
public static final void main(String[] args) throws Exception {
// load up the knowledge base
KnowledgeBase kbase = readKnowledgeBase();
StatefulKnowledgeSession ksession = kbase.newStatefulKnowledgeSession();
ProcessInstance processInstance = ksession.startProcess("com.sample.test");
System.out.println("process instance:" + processInstance.getState());
ksession.signalEvent("Yes", "YesValue", processInstance.getId());
System.out.println("process instance:" + ksession.getProcessInstance(processInstance.getId()));
// NO
processInstance = ksession.startProcess("com.sample.test");
System.out.println("process instance:" + processInstance.getState());
//ksession = restoreSession(ksession, true);
ksession.signalEvent("No", "NoValue", processInstance.getId());
System.out.println("process instance:" + ksession.getProcessInstance(processInstance.getId()));
}
private static KnowledgeBase readKnowledgeBase() throws Exception {
KnowledgeBuilder kbuilder = KnowledgeBuilderFactory.newKnowledgeBuilder();
kbuilder.add(ResourceFactory.newClassPathResource("BPMN2-EventBasedSplit.bpmn2"), ResourceType.BPMN2);
return kbuilder.newKnowledgeBase();
}
Not working code in CommandDelegate and calling at GWT server
ksession.getProcessInstance(new Long(executionId)).signalEvent("Yes", "YesValue");
For BPMN2-EventBasedSplit.bpmn2 see official examples in version 5.2.0 Final
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/649256#649256]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 1 month
[Javassist] - How to manage instrumentation in application deployed on JBoss?
by adesanctis
adesanctis [https://community.jboss.org/people/adesanctis] created the discussion
"How to manage instrumentation in application deployed on JBoss?"
To view the discussion, visit: https://community.jboss.org/message/715422#715422
--------------------------------------------------------------
Hello everybody,
I'm trying to instrument classes in JBoss Enterprise application on JBoss EA5.0
Using this code:
| | public byte[] transform(ClassLoader loader, |
| | String className, |
| | Class classBeingRedefined, |
| | ProtectionDomain protectionDomain, |
| | byte[] classfileBuffer) throws IllegalClassFormatException { |
| | // The class name contains slashes instead of periods, so use transform those to |
| | // dots for readability within the trace |
| | String dotClassName = className.replace('/', '.'); |
| | if (className.startsWith("$")) { |
| | return null; |
| | } |
| | // Only instrument a class once |
| | if (instrumentedClasses.contains(className)) { |
| | return null; |
| | } |
| | instrumentedClasses.add(className); |
| | // Skip in the list of class prefixes to skip |
| | for (MethodSelector classToSkip : classesToSkip) { |
| | if (dotClassName.startsWith(classToSkip.getPackageName())) { |
| | return null; |
| | } |
| | } |
| | if (logger.isInfoEnabled()) { |
| | logger.info("Checking class: " + className); |
| | } |
| | |
| | try { |
| | classPool.insertClassPath(new ByteArrayClassPath(className, classfileBuffer)); |
| // | classPool.insertClassPath(new ClassClassPath(this.getClass())); |
| | |
| // | classPool.insertClassPath(new ClassClassPath(classBeingRedefined.getClass())); |
| | *CtClass cc = classPool.get(dotClassName);* |
| // | CtClass cc = classPool.makeClass(new ByteArrayInputStream(classfileBuffer)); | |
//
In bold line where exception is raised.
I suppose that arror is related to specific class loader used for load class.
The question is: how to manage classes independently from class loader used? Is there a way to manage all possible case when working on JBoss?
Thank you
Alessandro
09:37:59,040 ERROR [STDERR] javassist.NotFoundException: com.arjuna.ats.internal.jta.recovery.arjunacore.RecoveryXids
09:37:59,040 ERROR [STDERR] at javassist.ClassPool.get(ClassPool.java:436)
09:37:59,040 ERROR [STDERR] at by.concept.applicationtracer.AdvancedTransformer.transform(AdvancedTransformer.java:163)
09:37:59,040 ERROR [STDERR] at sun.instrument.TransformerManager.transform(TransformerManager.java:169)
09:37:59,040 ERROR [STDERR] at sun.instrument.InstrumentationImpl.transform(InstrumentationImpl.java:365)
09:37:59,040 ERROR [STDERR] at java.lang.ClassLoader.defineClass1(Native Method)
09:37:59,040 ERROR [STDERR] at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
09:37:59,040 ERROR [STDERR] at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader.access$200(BaseClassLoader.java:67)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:633)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:592)
09:37:59,040 ERROR [STDERR] at java.security.AccessController.doPrivileged(Native Method)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:591)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:568)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseDelegateLoader.loadClass(BaseDelegateLoader.java:135)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.filter.FilteredDelegateLoader.loadClass(FilteredDelegateLoader.java:131)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.ClassLoadingTask$ThreadTask.run(ClassLoadingTask.java:455)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.ClassLoaderManager.nextTask(ClassLoaderManager.java:267)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.ClassLoaderManager.process(ClassLoaderManager.java:166)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:276)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1138)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:862)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader.doLoadClass(BaseClassLoader.java:502)
09:37:59,040 ERROR [STDERR] at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:447)
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/715422#715422]
Start a new discussion in Javassist at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 2 months
[jBPM] - How to define result mapping or exit action that saves task owner
by jemmerling
jemmerling [https://community.jboss.org/people/jemmerling] created the discussion
"How to define result mapping or exit action that saves task owner"
To view the discussion, visit: https://community.jboss.org/message/648536#648536
--------------------------------------------------------------
Hi,
This should be simple for any non-novice, it was suggested before however without an example.
So I have a process variable and I want a particular task to store its owner into that variable (say its name is "task2owner"). Is there an expression for that, for example:
task2owner=#{taskOwner}
So if there is a standard expression for the task owner (the above is just a guess at what it might be) then this result mapping would allow subsequent tasks to determine who owned (and completed) task2.
Failing that, I could try defining an on exit action, using kcontext I can get the node instance which I think has a one-to-one correspondence to the task, however the node instance does not seem to have an attribute that explicitly identifies the owner. Perhaps the owner is a variable?
Any suggestion would be greatly appreciated.
Thanks!
--JE
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/648536#648536]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 2 months
[JBoss Messaging] - How to list or monitor messages in a Queue which is already under use
by Aneesh Sebastian
Aneesh Sebastian [https://community.jboss.org/people/aneeshsebastian] created the discussion
"How to list or monitor messages in a Queue which is already under use"
To view the discussion, visit: https://community.jboss.org/message/720125#720125
--------------------------------------------------------------
I have a requirement to monitor a JBoss messaging queue, where users should be able to delete posted messages dynamically. The application has a MDPOJO registered and is up and running at server start up.
My requirement is, users should be able to delete a posted message any time he wishes. I tried below proto codes :
*Option1*
public void listAllJMS_Messages()
{
try {
ObjectName objectName=new ObjectName("jboss.messaging.destination:name=XXX,service=Queue");
List ls = (List) server.invoke(objectName, "listMessages" , null, null);
List<javax.jms.Message> messages=(List<javax.jms.Message>)server.invoke(objectName, "listAllMessages" , null, null);
int count=0;
for(javax.jms.Message msg : messages) {
System.out.println((++count)+"t"+msg.getJMSMessageID());
if(msg.getJMSType() != null && msg.getJMSType().equalsIgnoreCase("Text")) {
TextMessage text = (TextMessage)msg;
System.out.println(text.getText());
}
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// System.out.println((++count)+"t"+msg.getText());
}
*Option2*
public void listMsg() {
String destinationName = "queue/XXX";
Context ic = null;
ConnectionFactory cf = null;
Connection connection = null;
try {
ic = getInitialContext();
cf = (ConnectionFactory)ic.lookup("/ConnectionFactory");
Queue queue = (Queue)ic.lookup(destinationName);
connection = cf.createConnection();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
QueueBrowser qbrowser = session.createBrowser(queue);
Enumeration<?> qamsgs = qbrowser.getEnumeration();
while (qamsgs.hasMoreElements()){
Message msg = (Message)qamsgs.nextElement();
}
connection.start();
}
catch(Exception e)
{
System.out.println(e);
}
finally
{
if(ic != null)
{
try
{
ic.close();
}
catch(Exception e1)
{
System.out.println(e1);
}
}
}
}
In both the options,messages are getting listed in case of no message consumers at present.If have a live message consumer MDB, then list is returned as null.
I defintely need MDB consumer up and running.But still need to monitor messages.I should be able to do below :
1. List messages]
2. Delete a particular message
3. Change priority
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/720125#720125]
Start a new discussion in JBoss Messaging at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 2 months
[EJB3] - Runtime Exception while creating EJB Object
by Hushen Savani
Hushen Savani [https://community.jboss.org/people/hushen.savani] created the discussion
"Runtime Exception while creating EJB Object"
To view the discussion, visit: https://community.jboss.org/message/648806#648806
--------------------------------------------------------------
Hi Community,
I have developed an application with *Java 1.6*, *EJB-2.1*. The application is deployed on *JBossAS-5.1.0*. The application has been running very smooth for long a time. But for last two days, I found following sort of Runtime Exception while creating EJB Local Object/Local Home:
*Log Snippet-1*:
2012-01-25 17:09:02,896 ERROR [STDERR] (WorkerThread#4[127.0.0.1:47153])
Caused by: java.lang.NullPointerException
2012-01-25 17:09:02,896 ERROR [STDERR] (WorkerThread#4[127.0.0.1:47153])
at
org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invokeHome(BaseLocalProxyF
actory.java:343)
2012-01-25 17:09:02,896 ERROR [STDERR] (WorkerThread#4[127.0.0.1:47153])
at
org.jboss.ejb.plugins.local.LocalHomeProxy.invoke(LocalHomeProxy.java:133)
2012-01-25 17:09:02,896 ERROR [STDERR] (WorkerThread#4[127.0.0.1:47153])
at $Proxy257.create(Unknown Source)
*Log Snippet-2*:
java.lang.NullPointerException
at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:457)
at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
at $Proxy263.getDynamicLoopMessage_Generalized(Unknown Source)
*Log Snippet-3*:
2012-01-17 16:44:49,063 ERROR [org.jboss.ejb.plugins.LogInterceptor] (WorkerThread#5[192.168.1.76:19743]) RuntimeException in method: public abstract com.elitecore.billingengine.utils.BEResultObject com.elitecore.billingengine.ejb.billpreview.interfaces.IBillPreviewSessionLocal.doBasePriceCalculation(com.elitecore.billingengine.utils.BEHashMap):
java.lang.NullPointerException
at com.elitecore.billingengine.ejb.billpreview.sessionfacade.BillPreviewSessionFacade.doBasePriceCalculation(BillPreviewSessionFacade.java:357)
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)
Also, the whole server.log is attached with this thread. Pls. suggest some pointers on the same.
Thank you.
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/648806#648806]
Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 3 months
[jBPM] - jbpm5.2 guvnor/designer/console not deploying
by alain1106
alain1106 [https://community.jboss.org/people/alain1106] created the discussion
"jbpm5.2 guvnor/designer/console not deploying"
To view the discussion, visit: https://community.jboss.org/message/719690#719690
--------------------------------------------------------------
Hello
I am facing the following issue with the Jboss7 / JBPM5.2.0 installer (jbpm-5.2.0.final-installer-full) :
the server installs (ant install.demo) and starts (ant start.demo) all right but the guvnor, designer and console war files do not deploy correctly, resulting in http 404 errors.
Accessing the Jboss admin console on port 8080 works perfectly.
I have checked the forum for similar issues and tried a number of things as suggested there (offsetting port numbers, clean.demo and reinstall) with no results
The server log points to classpath errors , I guess that is where the problem is ?
I have checked 4 or 5 similar posts on the forum but none seems to be exactly the same issue ... :-(
thanks in advance for any hint !
alain
15:27:40,591 INFO [org.jboss.as.connector.subsystems.datasources] (Controller Boot Thread) Deploying JDBC-compliant driver class org.h2.Driver (version 1.2)
15:27:40,822 INFO [org.jboss.as.clustering.infinispan.subsystem] (Controller Boot Thread) Activating Infinispan subsystem.
15:27:41,773 INFO [org.jboss.as.naming] (Controller Boot Thread) JBAS011800: Activating Naming Subsystem
15:27:41,933 INFO [org.jboss.as.naming] (MSC service thread 1-1) JBAS011802: Starting Naming Service
15:27:41,963 INFO [org.jboss.as.osgi] (Controller Boot Thread) JBAS011910: Activating OSGi Subsystem
15:27:42,184 INFO [org.jboss.as.security] (Controller Boot Thread) Activating Security Subsystem
15:27:42,464 INFO [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 3.2.0.Beta2
15:27:42,784 INFO [org.xnio] (MSC service thread 1-2) XNIO Version 3.0.0.Beta3
15:27:42,945 INFO [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.0.0.Beta3
15:27:46,400 INFO [org.apache.catalina.core.AprLifecycleListener] (MSC service thread 1-1) The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_27\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\Java\jdk1.6.0_27\bin;C:\Program Files\Apache Software Foundation\apache-maven-3.0.3\bin;E:\ApachePHP\PHP\;C:\Program Files\Common Files\Avaya Modular Messaging;C:\Program Files\ThinkPad\Utilities;C:\oracle\ora81\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ThinkPad\ConnectUtilities;C:\WINDOWS\Downloaded Program Files;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Avaya Modular Messaging\Common;C:\Program Files\Avaya Modular Messaging\Common;C:\Program Files\Windows Imaging\;C:\GWT\gwt-windows-1.5.3\;C:\Program Files\Java\jdk1.6.0_27\bin\;C:\ant-182\bin;c:\Program Files\Enterprise Vault\EVClient\;C:\Program Files\Apache Software Foundation\apache-maven-3.0.3\bin;C:\Program Files\Apache Software Foundation\apache-maven-3.0.3;;.
15:27:46,870 INFO [org.jboss.as.ee] (Controller Boot Thread) Activating EE subsystem
15:27:47,692 INFO [org.jboss.as.remoting] (MSC service thread 1-1) Listening on /127.0.0.1:9999
15:27:48,493 INFO [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-1) Démarrage de Coyote HTTP/1.1 sur http-localhost-127.0.0.1-8080
15:27:48,563 INFO [org.jboss.as.jmx.JMXConnectorService] (MSC service thread 1-2) Starting remote JMX connector
15:27:54,291 INFO [org.jboss.as.connector] (MSC service thread 1-2) Starting JCA Subsystem (JBoss IronJacamar 1.0.3.Final)
15:27:55,613 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) Bound data source [java:jboss/datasources/ExampleDS]
15:27:55,623 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) Bound data source [java:jboss/datasources/jbpmDS]
15:28:00,700 INFO [org.jboss.as.deployment] (MSC service thread 1-1) Started FileSystemDeploymentService for directory C:\jbpm520\jbpm-installer\jboss-as-7.0.2.Final\standalone\deployments
15:28:01,091 INFO [org.jboss.as] (Controller Boot Thread) JBoss AS 7.0.2.Final "Arc" started in 47428ms - Started 97 of 152 services (55 services are passive or on-demand)
15:28:01,592 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) Starting deployment of "designer.war"
15:28:01,592 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) Starting deployment of "drools-guvnor.war"
15:28:01,642 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) Starting deployment of "jbpm-gwt-console-server.war"
15:28:01,642 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) Starting deployment of "jbpm-gwt-console.war"
15:38:01,444 ERROR [org.jboss.as.deployment] (DeploymentScanner-threads - 1) Did not receive a response to the deployment operation within the allowed timeout period [600 seconds]. Check the server configurationfile and the server logs to find more about the status of the deployment.
15:38:01,474 ERROR [org.jboss.as.deployment] (DeploymentScanner-threads - 1) Did not receive a response to the deployment operation within the allowed timeout period [600 seconds]. Check the server configurationfile and the server logs to find more about the status of the deployment.
15:38:01,544 INFO [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployment of "jbpm-gwt-console.war" was rolled back with failure message Operation cancelled
15:38:01,544 INFO [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployment of "jbpm-gwt-console-server.war" was rolled back with no failure message
15:38:01,554 INFO [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployment of "drools-guvnor.war" was rolled back with no failure message
15:38:01,554 INFO [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployment of "designer.war" was rolled back with no failure message
15:38:01,564 ERROR [org.jboss.as.deployment] (DeploymentScanner-threads - 1) Did not receive a response to the deployment operation within the allowed timeout period [600 seconds]. Check the server configurationfile and the server logs to find more about the status of the deployment.
15:38:01,624 ERROR [org.jboss.as.deployment] (DeploymentScanner-threads - 1) Did not receive a response to the deployment operation within the allowed timeout period [600 seconds]. Check the server configurationfile and the server logs to find more about the status of the deployment.
15:38:15,654 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_cs.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,654 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_de_DE.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_es.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_fr.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_hu.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_it.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_ja_JP.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_ko_KR.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_pl.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_pt_BR.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_ru.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_zh_CN.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_zh_TW.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar" does not point to a valid jar for a Class-Path reference.
15:38:15,755 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry activation.jar in "/C:/jbpm520/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/mail-1.4.jar" does not point to a valid jar for a Class-Path reference.
15:38:19,300 WARN [org.jboss.as.server.deployment.service-loader] (MSC service thread 1-1) Encountered invalid class name "org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer" for service type "org.xmlpull.v1.XmlPullParserFactory"
15:38:19,310 WARN [org.jboss.as.server.deployment.service-loader] (MSC service thread 1-1) Encountered invalid class name "org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer" for service type "org.xmlpull.v1.XmlPullParserFactory"
15:38:20,001 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry avalon-framework-4.2.0.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,001 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry batik-all-1.7.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,001 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry commons-io-1.3.1.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry commons-logging-1.0.4.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry serializer-2.7.0.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry servlet-2.2.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xalan-2.7.0.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xercesImpl-2.7.1.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xml-apis-1.3.04.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xml-apis-ext-1.3.04.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,071 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xmlgraphics-commons-1.3.1.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry fop-hyph.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jai_codec.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jai_core.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jai_imageio.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jimi-1.0.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xmlunit1.0.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb-api.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry activation.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jsr173_1.0_api.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb1-impl.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xalan-2.7.1.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.10-SNAPSHOT.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry serializer-2.7.1.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.10-SNAPSHOT.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xercesImpl-2.9.1.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.10-SNAPSHOT.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry xml-apis-1.0.b2.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.10-SNAPSHOT.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry commons-lang-2.6.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.10-SNAPSHOT.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry commons-io-2.1.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.10-SNAPSHOT.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry log4j-1.2.16.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.10-SNAPSHOT.jar" does not point to a valid jar for a Class-Path reference.
15:38:20,081 WARN [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry activation.jar in "/C:/jbpm520/jbpm-installer/content/designer.war/WEB-INF/lib/mail-1.4.1.jar" does not point to a valid jar for a Class-Path reference.
15:39:23,893 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) Stopped deployment jbpm-gwt-console-server.war in 63892ms
15:39:23,893 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) Stopped deployment jbpm-gwt-console.war in 63893ms
15:39:23,893 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) Stopped deployment designer.war in 63893ms
15:40:03,369 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_cs.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,369 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_de_DE.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_es.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_fr.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_hu.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_it.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_ja_JP.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_ko_KR.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_pl.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_pt_BR.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_ru.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_zh_CN.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry derbyLocale_zh_TW.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry iText-toolbox.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry iText-toolbox-2.1.2.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry bcmail-jdk14-138.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry bcprov-jdk14-138.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jaxb-api.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.1.1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry activation.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.1.1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jsr173_1.0_api.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.1.1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jaxb1-impl.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.1.1.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,379 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry activation.jar in "/C:/jbpm520/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/mail-1.4.jar" does not point to a valid jar for a Class-Path reference.
15:40:03,590 WARN [org.jboss.as.server.deployment.service-loader] (MSC service thread 1-2) Encountered invalid class name "org.springframework.context.ApplicationContext,org.springframework.beans.BeansException" for service type "org.apache.cxf.bus.factory"
15:40:03,590 WARN [org.jboss.as.server.deployment.service-loader] (MSC service thread 1-2) Encountered invalid class name "org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer" for service type "org.xmlpull.v1.XmlPullParserFactory"
15:40:12,783 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) Stopped deployment drools-guvnor.war in 112785ms
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/719690#719690]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 3 months