gpt4 book ai didi

java - Camel Http 代理到 Web 服务

转载 作者:行者123 更新时间:2023-12-01 12:09:01 25 4
gpt4 key购买 nike

我已经阅读了一些有关 Camel 的内容,并浏览了下载目录中的一些示例。

我想知道是否可以配置路由以使用 jetty: 或 servlet: 接受带有参数 name=fred 的传入 Http 请求:

然后,我需要将其转换为真正的安全 SOAP 请求 (HTTPS) 并获取 SOAP 响应。

我是否必须编写 Java 代码来发送 SOAP 请求?到目前为止我看到的示例是使用 SOAP 作为输入,修改一些值并将其作为 SOAP 发送...

有人可以用最少的代码提供一些指导吗?

感谢和问候锡

最佳答案

这是我所做的并且有效.. velocity_template.vm 包含整个 SOAP 请求,并在运行时替换动态字段,例如。 ${in.headers.name}

<?xml version="1.0" encoding="UTF-8"?>

<!-- START SNIPPET: e1 -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:camel="http://camel.apache.org/schema/spring"
xmlns:cxf="http://camel.apache.org/schema/cxf"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
http://camel.apache.org/schema/cxf http://camel.apache.org/schema/cxf/camel-cxf.xsd">

<cxf:cxfEndpoint id="real_webservice"
address="url_to_wsdl?wsdl"
endpointName="s:Real_impl_class"
xmlns:s="real_namespace"/>

<camelContext xmlns="http://camel.apache.org/schema/spring">

<route id="helloRoute">
<from uri="servlet:///hello"/>
<to uri="velocity:etc/velocity_template.vm"/>
<to uri="cxf:bean:real_webservice?dataFormat=MESSAGE"/>
</route>

</camelContext>

</beans>
<!-- END SNIPPET: e1 -->

关于java - Camel Http 代理到 Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27377578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com