0

当我们将 Talend ESB 路由升级到最新版本时,我正在尝试使用 Citrus 框架来设置回归测试。我们的路由主要是基于 SSL 的 Soap,由我们的本地 CA 保护,并且需要授权证书。我遵循了 sample-soap 项目,并让它暂时覆盖了证书要求。我试图让它为客户端调用我们的 ESB 路由使用证书而迷失了方向。我在 citrusframework.org 上找到了 sample-https 项目,但它似乎是为 Rest 服务制作的,我无法让它与我的 soap 有效负载一起工作。

我的最终目标是调用我们现有的路由,然后调用最新版本的路由,并将返回的 XML 与某种 groovy 代码进行比较,以验证它们是否相同。

是否存在 Soap over SSL 示例,可以帮助我了解我的项目做错了什么?

我试图将示例 https 代码添加到我的肥皂项目中,但没有成功。我得到的错误是 ssl-handshake 错误,我知道它与证书相关,因为我确定我没有在我的有效负载中附加有效的证书。

4

1 回答 1

0

您的配置必须与 https-sample 有所不同。您必须在 Citrus SOAP Web 服务客户端上设置消息发送方:

<bean class="com.consol.citrus.samples.todolist.config.SoapClientSslConfig"/>

<citrus-ws:client id="todoClient"
                    request-url="https://localhost:8443"
                    message-sender="sslRequestMessageSender"/>

证书是在 http 客户端 SSL 上下文中配置的。

@Configuration
public class SoapClientSslConfig {

    @Bean
    public HttpClient httpClient() {
        try {
            SSLContext sslcontext = SSLContexts.custom()
                    .loadTrustMaterial(new ClassPathResource("keys/citrus.jks").getFile(), "secret".toCharArray(),
                            new TrustSelfSignedStrategy())
                    .build();

            SSLConnectionSocketFactory sslSocketFactory = new SSLConnectionSocketFactory(
                    sslcontext, NoopHostnameVerifier.INSTANCE);

            return HttpClients.custom()
                    .setSSLSocketFactory(sslSocketFactory)
                    .setSSLHostnameVerifier(NoopHostnameVerifier.INSTANCE)
                    .addInterceptorFirst(new HttpComponentsMessageSender.RemoveSoapHeadersInterceptor())
                    .build();
        } catch (IOException | CertificateException | NoSuchAlgorithmException | KeyStoreException | KeyManagementException e) {
            throw new BeanCreationException("Failed to create http client for ssl connection", e);
        }
    }

    @Bean
    public HttpComponentsMessageSender sslRequestMessageSender() {
        return new HttpComponentsMessageSender(httpClient());
    }
}

示例代码现在也可以在 github 上找到:https ://github.com/christophd/citrus-samples/tree/master/sample-soap-ssl

于 2016-11-17T14:27:42.090 回答