Bug in base-build.xml file - JBoss Remoting version control.
------------------------------------------------------------
Key: JBESB-2792
URL:
https://jira.jboss.org/jira/browse/JBESB-2792
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Examples
Affects Versions: 4.4
Environment: SOA 4.3.0 CP2 CR2
Reporter: Boris Belovic
Attachments: base-build.xml
I am testing quickstarts and I found a bug in quickstart/conf/base-build.xml file. The
script expects JBoss Remoting 2.2.2SP version or higher, but the version 2.2.2SP seems to
be hardcoded in the script. So even if I have higher version (2.2.3) the script fails.
This bug prevents webservice_mtom, webservice_proxy quickstarts from being deployed
correctly (deployment of these quickstarts fails).
Affected part of base-build.xml follows. It is a part of
"assert-jbossremoting-version" target which starts on line 518 in
base-build.xml.
<echo message="JBR Version String:
'${jbr-version-string}'."/>
<condition property="is-valid-jbr-version">
<and>
<contains string="${jbr-version-string}"
substring="2.2.2.SP" />
<not>
<contains string="${jbr-version-string}"
substring="2.2.2.SP1 " />
</not>
</and>
</condition>
After I commented out the section above, both quickstarts were deployed correctly.
--
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