在ServiceMix上设置代理身份验证

时间:2013-06-05 16:41:30

标签: apache-servicemix

我在Web代理后面安装了ServiceMix,我需要它通过Internet调用Web服务。

我尝试使用

在我的代码中设置代理设置
System.setProperty("http.proxyHost" .....

(丑陋和hacky,我知道) 以及设置

http.proxyHost=myproxy
http.proxyPort=8080
http.proxyUser=myuser
http.proxyPassword=mypassword

在ServiceMix的etc / system.properties文件中。

这些都没有效果。 任何建议,将不胜感激。 谢谢。

2 个答案:

答案 0 :(得分:0)

由于您使用ServiceMix,因此您最有可能使用Camel和CXF来调用此Web服务。 您需要通过设置http-client配置在Camel上下文中设置此代理,尤其是对于CXF。看一下这个link,它会告诉你如何配置CXF的http管道。 我相信你也能用这种方式设置代理。

答案 1 :(得分:0)

使用http:conduit:

  <http:conduit name="*.http-conduit">
    <http:authorization>
      <sec:UserName>Betty</sec:UserName>
      <sec:Password>password</sec:Password>
    </http:authorization>
    <http:client ProxyServer="x.x.x.x" ProxyServerPort="xxxx"/>

  </http:conduit>

请参阅:http://cxf.apache.org/docs/client-http-transport-including-ssl-support.html