如何从wso2代理服务调用python脚本文件

问题描述 投票:1回答:2

如何从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脚本

wso2 wso2esb wso2ei
2个回答
1
投票

您可以使用class mediator并从那里执行python脚本。以下是一个样本类调解器,可以执行此操作。

public boolean mediate(MessageContext context) { 
        String command = "python /path/to/script.py";
        try {
            Process p = Runtime.getRuntime().exec(command);
            BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
            String ret = in.readLine();
            System.out.println("value is : "+ret);
        } catch (IOException e) {
            // handle exception
        }
        return true;
    }

你可以参考Running a .py file from Java


6
投票

WSO2 EI具有使用Script mediator执行python脚本的内置功能。以下是示例配置。

**sample api configuration** 

<api xmlns="http://ws.apache.org/ns/synapse" name="api" context="/api-context">
   <resource methods="POST GET">
      <inSequence>
         <log level="full">
            <property name="Message" value="Before transformation"/>
         </log>
         <script language="py" key="conf:/repository/script/stockquoteTransformResponse.py" function="transformRequest"/>
         <log level="full">
            <property name="Message" value="After transformation"/>
         </log>
         <respond/>
      </inSequence>
   </resource>
</api>

**stockquoteTransformResponse.py file saved in carbon registry.**

from org.apache.synapse.util.xpath import SynapseXPath

def transformRequest(mc):
    symbolXPath = SynapseXPath("//*[local-name()='Code']/text()")
    symbol = symbolXPath.stringValueOf(mc)
    mc.setPayloadXML('''
	<m:getQuote xmlns:m="http://services.samples">
		<m:request>
			<m:symbol>''' + symbol + '''</m:symbol>
		</m:request>
	</m:getQuote>''')

我们需要将jython jar添加到WSO2EI_HOME / lib目录中。这是使用http://central.maven.org/maven2/org/python/jython/2.2.1/jython-2.2.1.jar的jython-2.2.1.jar测试的

一旦我们调用上面的api,就可以看到以下输出。 enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.