在我的项目中,我必须为 Web 服务配置管道设置。要与 Web 服务通信,我必须通过代理。因为 http-conf:basicAuthSupplier 由于http://cxf.547215.n5,它无法正常工作。 nabble.com/svn-commit-r1240059-cxf-trunk-rt-transports-http-src-main-resources-schemas-configuration-http-conf-d-td5453353.html有人知道如何配置代理设置吗?
<http-conf:conduit name="*.http-conduit">
<http-conf:authorization>
<sec:UserName>username</sec:UserName>
<sec:Password>password</sec:Password>
</http-conf:authorization>
<http-conf:client Connection="Keep-Alive"
AllowChunking="false"
ProxyServer=proxyIp
ProxyServerPort=proxyPort
ProxyServerType="HTTP"/>
</http-conf:conduit>
我也尝试过,http-conf:proxyAuthorization
但出现相同的 407 代理身份验证错误。
有谁知道如何解决它?