Apache CXF 客户端代理设置

Apache CXF Client proxy settings

我正在尝试使用以下教程为 Soap 服务开发消费者 http://cxf.apache.org/docs/developing-a-consumer.html

在部分中,"Setting Connection Properties with Contexts"我在看下面的代码

// Set request context property.
java.util.Map<String, Object> requestContext =
  ((javax.xml.ws.BindingProvider)port).getRequestContext();
requestContext.put(ContextPropertyName, PropertyValue);

// Invoke an operation.
port.SomeOperation();

有人可以告诉我是否可以使用 requestContext 属性设置代理服务器设置以及如何设置?我的代码 运行 在代理后面,我需要传出 SOAP 调用才能使用代理服务器设置。

代理设置通常使用httpconduit对象设置

HelloService hello = new HelloService();
HelloPortType helloPort = cliente.getHelloPort();
org.apache.cxf.endpoint.Client client = ClientProxy.getClient(helloPort);
HTTPConduit http = (HTTPConduit) client.getConduit();
http.getClient().setProxyServer("proxy");
http.getClient().setProxyServerPort(8080);
http.getProxyAuthorization().setUserName("user proxy");
http.getProxyAuthorization().setPassword("password proxy");