3

我有一个 cxf JAX-WS 客户端。我添加了故障转移策略。问题是客户端如何从备份解决方案中恢复并再次使用主 URL?因为现在客户端切换到辅助 URL 后仍然存在,即使主 URL 再次可用,也不会使用主 URL。

客户端部分的代码是:

JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.setServiceClass(GatewayPort.class);
factory.setAddress(this.configFile.getPrimaryURL());

FailoverFeature feature = new FailoverFeature();
SequentialStrategy strategy = new SequentialStrategy();
List<String> addList = new ArrayList<String>();
addList.add(this.configFile.getSecondaryURL());
strategy.setAlternateAddresses(addList);
feature.setStrategy(strategy);

List<AbstractFeature> features = new ArrayList<AbstractFeature>();
features.add(feature);
factory.setFeatures(features);

this.serviceSoap = (GatewayPort)factory.create();

Client client = ClientProxy.getClient(this.serviceSoap);
if (client != null)
{
    HTTPConduit conduit = (HTTPConduit)client.getConduit();
    HTTPClientPolicy policy = new HTTPClientPolicy();
    policy.setConnectionTimeout(this.configFile.getTimeout());
    policy.setReceiveTimeout(this.configFile.getTimeout());
    conduit.setClient(policy);
}
4

2 回答 2

4

您可以将主 URL 添加到备用地址列表,而不是将其设置为 JaxWsProxyFactoryBean。这样,由于您使用的是 SequentialStrategy,因此将首先检查每个服务调用的主 URL,如果失败,则将尝试辅助 URL。

于 2012-10-17T04:07:58.093 回答
0

您不妨尝试使用故障回复的替代 CXF 故障转移功能。

https://github.com/jaceko/cxf-circuit-switcher

于 2013-11-07T11:41:19.243 回答