Visibroker

From EggeWiki
Revision as of 23:34, 23 October 2007 by Egge (talk | contribs) (New page: I was attempting to 'upgrade' to Visibroker 7.0. I started receiving this error message from within ant when running idl2java: <pre> idl2java: [exec] <internal>: unrecoverable erro...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

I was attempting to 'upgrade' to Visibroker 7.0. I started receiving this error message from within ant when running idl2java:


idl2java:
     [exec] <internal>: unrecoverable error launching tool; aborting

BUILD FAILED
C:\dev\MBL EQM MBLX CFD - PerformanceEnhancements\build.xml:145: The following error occurred while executing this line:
C:\dev\MBL EQM MBLX CFD - PerformanceEnhancements\build.xml:833: exec returned: 10

Total time: 5 seconds

I found adding the PATH to the exec command fixed the problem. <geshi lang="xml">

 <env key="PATH" path="${env.PATH}"/>

</geshi>

I also was getting this problem

IDL preprocessor: (warning)extra text following line continuation
IDL preprocessor:unexpected backslash encountered
IDL preprocessor: (warning)extra text following line continuation
IDL preprocessor:unexpected backslash encountered
2 errors, 2 warnings

This was caused by not converting the backslashes in the file names. Using <arg file="..."> instead of <arg line="..."> in the ant task fixed this problem.