Description of problem: ====================== Scenario-1) ============ With the following line of JAVA_OPTS in "standalone.bat.conf" file set "JAVA_OPTS=%JAVA_OPTS% -Dhttp.nonProxyHosts=localhost|127.0.0.1|10.10.10.*" {code} Error while starting EAP 6.1.1 C:\jboss-eap-6.1.1\bin>standalone.bat Calling "C:\jboss-eap-6.1.1\bin\standalone.conf.bat" Setting JAVA property to "C:\JDKs\jdk1.7.0_67\bin\java" '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. {code} Scenario-2) ============ In Windows "^" sign is the escape character so we tried altering the JAVA_OPTS as following in the "standalone.bat.conf" file: set "JAVA_OPTS=%JAVA_OPTS% -Dhttp.nonProxyHosts=localhost^|127.0.0.1^|10.10.10.*" Now EAP 6.1.1 server starts but still we see the following messages in windows console: {code} C:\jboss-eap-6.1.1\bin>standalone.bat Calling "C:\jboss-eap-6.1.1\bin\standalone.conf.bat" Setting JAVA property to "C:\JDKs\jdk1.7.0_67\bin\java" '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. {code} Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: =================== 1. Edit the "C:\jboss-eap-6.1.1\bin\standalone.conf.bat" by adding the following line of entry in it: set "JAVA_OPTS=%JAVA_OPTS% -Dhttp.nonProxyHosts=localhost|127.0.0.1|10.10.10.*" OR set "JAVA_OPTS=%JAVA_OPTS% -Dhttp.nonProxyHosts=localhost^|127.0.0.1^|10.10.10.*" 2 Restart WildFly and notice the error messages in the Windows Console. Actual results: ================ Error occurs while starting EAP6 as following: {code} '127.0.0.1' is not recognized as an internal or external command, operable program or batch file. {code} Expected results: ================ - EAP6 should have started cleanly without those messages. Additional info: ================ - Issue occurs on Windows OS using standalone.bat script.
*** Bug 1149971 has been marked as a duplicate of this bug. ***
Tomaz Cerar <tomaz.cerar> updated the status of jira WFCORE-99 to Resolved
PR: https://github.com/jbossas/jboss-eap/pull/3043