【发布时间】:2019-04-07 06:47:32
【问题描述】:
如何从 wso2 代理服务调用 python 脚本文件。
我们尝试使用 send mediator 调用位于我本地机器中的 python 脚本文件。
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="FilepythonTest"
transports="http https"
startOnLoad="true">
<description/>
<target >
<inSequence>
<send>
<endpoint>
<address uri="local:///Users/vikashsaharan/Desktop/python/testpy.py"/>
</endpoint>
</send>
</inSequence>
<outSequence>
<log level="full"/>
</outSequence>
</target>
</proxy>
我们无法通过此通话进行通话。请指导我如何从 wso2 调用 python 脚本
【问题讨论】: