使用Fiddler为JBoss(ESB)调试设置代理

使用Fiddler为JBoss(ESB)调试设置代理,jboss,proxy,fiddler,esb,Jboss,Proxy,Fiddler,Esb,运行JBoss 5.1.0GA,并在Win 7 Professional上安装JBoss ESB 4.10。 我想通过代理(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

运行JBoss 5.1.0GA,并在Win 7 Professional上安装JBoss ESB 4.10。 我想通过代理(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
在properties-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>

http.proxyHost=127.0.0.1
http.proxyPort=8888
htttps.proxyHost=127.0.0.1
https.proxyPort=8888
proxySet=true

您可以改用
-Dhttp.proxyHost=localhost-Dhtttps.proxyHost=localhost

找到解决方案了吗?我也有同样的问题…@walts,我记得,我把Fiddler丢在地上,用了Wireshark。