帮助文档

前往官网
最新更新时间:2024-06-19 09:03:35

一、 获取wsdl文件

a)找到”wsdl:service”和“wsdl:port”
b)找到“wsdl:portType”

enter image description here
enter image description here

二、 连接器授权配置

a)Service:对应“wsdl:service”,
b)Port:对应“wsdl:port”
c)协议版本:当前连接器只支持soap11

enter image description here

三、 连接器参数配置

enter image description here
a)接口名称:对应“wsdl:operation”或“wsdl:portType”
b)消息:请求体:只录入xml内容的body部分,不含<Body>标签,如下图红框部分:
enter image description here
注意:因为body中没有自定义命名空间的引用部分即上图中【xmlns:urn="xxx"】部分,需要在请求体中的body部分引入,
例如:

	<urn:XXX xmlns:urn="xxx">
    	<E_PARAM1>111</E_PARAM1>
   		<E_PARAM2>222</E_PARAM2>
	</urn:XXX>

c)消息:请求头:固定写法,内容如下:

def dw_process(msg):
    return Entity.from_value({"root":""}, mime_type="application/xml", encoding='utf-8')

四、 连接器参数配置

完成以上配置后,即可以进行调试了,结合soap tools可以实现soap接口转为rest接口。

如果您在文档使用中遇到问题或者有改进建议,请点击 在线反馈