Hide Forgot
Date of First Response: 2009-12-02 22:14:39 project_key: SOA The JBossESB getting started guide makes reference to a required change to the jbossas/bin/run.bat to resolve an issue with using WISE. SOA 5.0.ER1 doesn't include this. Should this change be incorporated in the run.bat file or documented as a known issue ? Windows script update for JBoss AS 5 The run.bat script contains an error which prevents wise from compiling the webservice proxies. In order to fix the type you must edit the run.bat script and locate the following lines if "x%JAVAC_JAR%" == "x" ( set "RUNJAR=%JAVAC_JAR%;%JBOSS_HOME%\bin\run.jar" ) else ( set "RUNJAR=%JBOSS_HOME%\bin\run.jar" ) The fix involves switching the set statements so that they read as follows if "x%JAVAC_JAR%" == "x" ( set "RUNJAR=%JBOSS_HOME%\bin\run.jar" ) else ( set "RUNJAR=%JAVAC_JAR%;%JBOSS_HOME%\bin\run.jar" )
The problem has been fixed.
The EAP/SOA 5.0.0 run.bat already has this change, so the section regarding the change can be removed from the docs.
The problem is not in the guide here: http://documentation-stage.bne.redhat.com/docs/en-US/JBoss_Enterprise_SOA_Platform/5.0.0/html-single/Getting_Started_Guide/