在 Win 7 Professional 上安装 JBoss ESB 4.10 运行 JBoss 5.1.0GA。我想通过代理(Fiddler)从 ESB(org.jboss.soa.esb.actions.soap.SOAPClient)路由(SOAP)请求。
我尝试了以下设置,但在 Fiddler 中没有看到任何请求:
在 run.conf.bat 中:
set "JAVA_OPTS=%JAVA_OPTS% -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8888
-Dhtttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=8888 -DproxySet=true
在属性-service.xml 中:
<mbean code="org.jboss.varia.property.SystemPropertiesService"
name="jboss:type=Service,name=SystemProperties">
<attribute name="Properties">
http.proxyHost=127.0.0.1
http.proxyPort=8888
htttps.proxyHost=127.0.0.1
https.proxyPort=8888
proxySet=true
</attribute>
</mbean>