我正在尝试使用IronPython的交互式控制台构建一个Web应用程序。当我尝试在IronPython的普通控制台中导入xmlrpclib时,它可以工作。但是,如果我在C#代码中使用IronPython,它会抛出异常“没有名为xmlrpclib的模块”。这是一个已知的问题?有什么解决方案可以解决这个问题吗?
以下是代码:
var testCode = @"
import xmlrpclib;
APIServer = xmlrpclib.ServerProxy('address', allow_none=True);
print APIServer.Hello();
";
MyStream str = new MyStream();
ScriptEngine engine = Python.CreateEngine();
engine.Runtime.IO.SetOutput(str, System.Text.Encoding.ASCII);
engine.Runtime.IO.SetErrorOutput(str, System.Text.Encoding.ASCII);
ScriptScope scope = engine.CreateScope();
ScriptSource src = engine.CreateScriptSourceFromString(testCode);
src.Execute(scope);
答案 0 :(得分:0)
对于这个愚蠢的问题,很抱歉,IronPython在我的C#代码中使用的路径不正确。我刚刚纠正了路径,一切正常。感谢digEmAll。