3
運行一個JBoss 5.1.0GA,安裝在Win 7 Professional上的JBoss ESB 4.10。 我想通過代理(Fiddler)從ESB(org.jboss.soa.esb.actions.soap.SOAPClient)路由(SOAP)請求。使用Fiddler設置JBoss(ESB)調試代理
我曾嘗試以下設置,但我沒有看到在提琴手的任何請求:
在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>
您是否找到任何解決方案?我有同樣的問題... – walts
@walts當我記得它時 - 我放棄了Fiddler並使用了Wireshark。 – DrHyper