[JBoss JIRA] Created: (JBESB-2798) QS: transfrorm_XML2XML_simple - org.jboss.soa.esb.testutils.JMSUtil class missing
by Boris Belovic (JIRA)
QS: transfrorm_XML2XML_simple - org.jboss.soa.esb.testutils.JMSUtil class missing
---------------------------------------------------------------------------------
Key: JBESB-2798
URL: https://jira.jboss.org/jira/browse/JBESB-2798
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Examples
Affects Versions: 4.4
Reporter: Boris Belovic
In build.xml ( on line 22) in transform_XML2XML_simple quickstart is notifyUpdate target which depends on org.jboss.soa.esb.testutils.JMSUtil class. This target fails because this class is no more part of ESB, other targets work fine for this quickstart.
Target with missing class:
<target name="notifyUpdate" depends="compile" description="Send a notification message to the JMS Topic">
<echo>Sending transformation update notification for transform "simple-transform" to deployed ESB.</echo>
<java fork="yes" classname="org.jboss.soa.esb.testutils.JMSUtil" failonerror="true" classpathref="exec-classpath">
<arg value="topic/org.jboss.soa.esb.transformation.Update"/>
<arg value="topic"/>
<arg value="simple-transform"/>
</java>
</target>
and the exception which this target throws:
Caused by: java.lang.ClassNotFoundException: org.jboss.soa.esb.testutils.JMSUtil
[java] at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
[java] at java.security.AccessController.doPrivileged(Native Method)
[java] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
[java] at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
[java] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[java] at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
[java] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
[java] Could not find the main class: org.jboss.soa.esb.testutils.JMSUtil. Program will exit.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months