我是 Mule ESB 的新手,今天我对模式配置有了一些经验。而且我仍然不知道模式:web-service-proxy 和模式:http-proxy 之间有什么区别。因为,我只看到这两种模式都可以将入站地址重定向到出站地址。还有一个问题,这个配置可以运行得很好,我可以跳转到soap web service
<pattern:http-proxy name="http-proxy-sample-2">
<http:inbound-endpoint address="http://localhost:9001/pattern/httpproxy2" />
<http:outbound-endpoint address="http://localhost:9000/services/soap" />
</pattern:http-proxy>
但是,我无法运行它:
<pattern:http-proxy name="http-proxy-sample-2">
<http:inbound-endpoint address="http://localhost:9001/pattern/httpproxy2" />
<http:outbound-endpoint address="http://google.com" />
</pattern:http-proxy>
也许我在这里误解了,请给我一些建议。