我正在尝试让COM启动我的进程外.NET COM服务器。如果使用x64编译服务器进程,它可以工作,但是如果我使用AnyCPU(这是我想要的),那么它会挂起一段时间并最终因0x80080005(CO_E_SERVER_EXEC_FAILURE)而失败。我怎样才能让它发挥作用?
另一个小伙伴有一个similar problem,但MSFT的答案令人困惑。他似乎建议它只能通过DCOM(见链接)或COM +工作。我怀疑要么是要做很多工作,要么比分发我的.exe构建为x64和x86要糟糕得多。
您可能想知道我为什么要实施IPersistFile。这是因为我的真正问题是让BindMoniker()从32位C ++程序运行到我的AnyCPU .Net程序。我把问题简化为这里提供的更简单的例子。
以下是客户端代码:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
[DllImport("ole32.dll", ExactSpelling = true, PreserveSig = false)]
[return: MarshalAs(UnmanagedType.Interface)]
static extern object CoCreateInstance(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid rclsid,
[MarshalAs(UnmanagedType.IUnknown)] object pUnkOuter,
CLSCTX dwClsContext,
[In, MarshalAs(UnmanagedType.LPStruct)] Guid riid);
[Flags]
enum CLSCTX : uint
{
CLSCTX_LOCAL_SERVER = 0x4,
CLSCTX_ACTIVATE_64_BIT_SERVER = 0x80000,
}
private void Form1_Load(object sender, EventArgs e)
{
IPersistFile pf = (IPersistFile)CoCreateInstance(
new Guid("1984D314-FC8D-44bc-9146-8A13500666A6"),
null,
CLSCTX.CLSCTX_LOCAL_SERVER,
new Guid("0000010b-0000-0000-C000-000000000046")); // IPersistFile
pf.Load("c:\\bozo", 0);
}
}
这是服务器:
static class Program
{
[STAThread]
static void Main()
{
if (Environment.CommandLine.Contains("/reg")) {
RegistryKey cls = Registry.LocalMachine.CreateSubKey(String.Format(
"SOFTWARE\\Classes\\CLSID\\{0}", PersistFile.ClassID.ToString("B")));
cls.SetValue("InprocHandler32", "Ole32.dll");
RegistryKey ls32 = cls.CreateSubKey("LocalServer32");
ls32.SetValue(null, '"' + Application.ExecutablePath + '"');
ls32.SetValue("ServerExecutable", Application.ExecutablePath);
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
RegistrationServices reg = new RegistrationServices();
reg.RegisterTypeForComClients(
typeof(PersistFile),
RegistrationClassContext.LocalServer,
RegistrationConnectionType.MultipleUse);
Application.Run(new Form1());
}
}
[ComVisible(true),
Guid("1984D314-FC8D-44bc-9146-8A13500666A6"),
ClassInterface(ClassInterfaceType.None)]
public class PersistFile : IPersistFile
{
public static Guid ClassID
{
get
{
GuidAttribute a = (GuidAttribute)typeof(PersistFile).GetCustomAttributes(typeof(GuidAttribute), false)[0];
return new Guid(a.Value);
}
}
#region IPersistFile
public void GetClassID(out Guid pClassID)
{
MessageBox.Show("GetClassID");
pClassID = ClassID;
}
public int IsDirty()
{
MessageBox.Show("IsDirty");
return 1;
}
public void Load(string pszFileName, int dwMode)
{
MessageBox.Show(String.Format("Load {0}", pszFileName));
}
public void Save(string pszFileName, bool fRemember)
{
MessageBox.Show("Save");
throw new NotImplementedException();
}
public void SaveCompleted(string pszFileName)
{
MessageBox.Show("SaveCompleted");
throw new NotImplementedException();
}
public void GetCurFile(out string ppszFileName)
{
MessageBox.Show("GetCurFile");
throw new NotImplementedException();
}
#endregion
}
答案 0 :(得分:1)
尝试使用RegistrationServices类注册您的com程序集。它还将选择正确的注册表路径并执行其他操作。
示例:
Assembly currentAssembly = Assembly.GetExecutingAssembly();
System.Runtime.InteropServices.RegistrationServices regAsm = new System.Runtime.InteropServices.RegistrationServices();
bool isRegistered = regAsm.RegisterAssembly(currentAssembly, System.Runtime.InteropServices.AssemblyRegistrationFlags.SetCodeBase);
另外我认为,根据.NET com服务器,.NET客户端程序集有些麻烦,但我找不到任何资源...
希望,这会有所帮助......
答案 1 :(得分:1)
我猜问题是在运行时。我创建了一个使用C ++库注册的COM服务器(注册执行完美)。从.NET(CS)切换到AnyCPU时遇到了问题。
架构:
注册构建为“AnyCPU”的.NET应用程序时会发生丑陋的事情。 COM客户端通过DCOM调用COM服务器后,服务器应用程序启动,但客户端收到无法启动COM服务器的错误。
我更进一步,用procmon和其他工具分析了注册数据,我得出了同样的结论:
现在,我做了一些实验:x86 / x64 / AnyCPU COM客户端可以毫无问题地连接到任何x86 / x64 COM服务器,但它无论如何都无法连接到AnyCPU COM服务器......
然后我执行了以下测试用例:
到底哪里是沟通问题?这很奇怪......所提出的解决方案(CLSCTX_ACTIVATE_64_BIT_SERVER,PreferredServerBitness或corflags)都没有帮助。
其他人在这件事上取得了一些进展吗?我们应该联系微软吗?