我想用win32com扩展来实现的Python COM服务器。 然后,从.NET中消耗服务器。 我用下面的例子来实现COM服务器,它运行没有问题,但是当我尝试使用它使用C#我得到FileNotFoundException异常以下消息“检索COM类工厂组件具有CLSID {676E38A6-7FA7-4BFF-9179 -AE959734DEBB}失败,原因是以下错误:8007007E“。 。 我张贴的C#代码well.I不知道如果我想的东西我希望得到任何帮助。
谢谢,萨拉
#PythonCOMServer.py
import pythoncom
class PythonUtilities:
_public_methods_ = [ 'SplitString' ]
_reg_progid_ = "PythonDemos.Utilities"
# NEVER copy the following ID
# Use"print pythoncom.CreateGuid()" to make a new one.
_reg_clsid_ = pythoncom.CreateGuid()
print _reg_clsid_
def SplitString(self, val, item=None):
import string
if item != None: item = str(item)
return string.split(str(val), item)
# Add code so that when this script is run by
# Python.exe,.it self-registers.
if __name__=='__main__':
print 'Registering Com Server'
import win32com.server.register
win32com.server.register.UseCommandLine(PythonUtilities)
// the C# code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Type pythonServer;
object pythonObject;
pythonServer = Type.GetTypeFromProgID("PythonDemos.Utilities");
pythonObject = Activator.CreateInstance(pythonServer);
}
}
}