我有一个python文件,里面填充了我需要使用jsonrpc发布的函数。目前我可以将函数发布到所需的站点并在python中获得结果。但是现在我想从C#运行python脚本,得到结果并用它们做些什么。我遇到麻烦让python脚本运行并将结果返回给C#
我不想下载IronPython,因此不使用它的解决方案会有所帮助。
现在发生的事情是有一个shell弹出快速然后在Process.Start(start))
行被击中时消失。然后没有任何东西返回给读者。
Python代码:
#!usr/bin/python
import sys
import json
import jsonrpclib
def dc_906(orderid, givexNum, amount):
jsonrpclib.config.use_jsonclass = True
server = jsonrpclib.Server('https://dev-dataconnect.com:50')
ping1 = server.dc_906('en', orderid, 'userid', 'password', num, amount)
print jsonrpclib.history.response #this could be a "return" instead of print, not sure.
if __name__ == "__main__":
function = sys.argv[1]
orderid = sys.argv[2]
num = sys.argv[3]
amount = sys.argv[4]
if function == 'dc_906':
dc_906(orderid, num, amount)
执行流程的C#代码(来自:How do I run a Python script from C#?)
try
{
ProcessStartInfo start = new ProcessStartInfo();
start.FileName = @"C:\Python27\python.exe"; //full path to python.exe
//start.FileName = @"C:\Windows\system32\cmd.exe";
//start.Arguments = string.Format("{0} {1} {2} {3}", @"C:\Users\J1035\Documents\Python27\GiveX_python\test.py", "123456789", "603628982592000186162", 20.00);
start.Arguments = string.Format("{0} {1}", @"C:\Users\J1035\Documents\Python27\GiveX_python\test.py", "123456789 603628982592000186162 20.00");
start.UseShellExecute = false;
start.RedirectStandardOutput = true;
using(Process process = Process.Start(start))
using (StreamReader reader = process.StandardOutput)
{
string foo = reader.ReadToEnd();
TxtResultOutput.Text += foo;
}
}
catch (Exception ex)
{
var foo = ex.Message;
}
在命令行上运行python脚本的结果:
答案 0 :(得分:3)
看起来你忘记了" dc_906"在你的参数行。没有它你的功能就不会被调用。