我正在尝试在C#2008中使用MSWinSock,但它不起作用。
我继续得到这个例外:
System.Runtime.InteropServices.COMException (0x80040112): Het maken van een exemplaar van het COM-onderdeel met CLSID {248DD896-BB45-11CF-9ABC-0080C7E7B78D} uit de IClassFactory is mislukt door de volgende fout: 80040112.
我用它作为我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MSWinsockLib;
using Info.Kernel.Logging;
namespace InfoEmu.Kernel.OldSock
{
public class WinSockListener
{
private WinsockClass Winsock;
private WinsockClass[] Clients = new WinsockClass[1000];
public WinSockListener(int port)
{
try
{
Winsock = new WinsockClass();
Winsock.LocalPort = port;
Winsock.Listen();
}
catch (Exception e)
{
Cout.WriteLine("[ERROR!] {0} {1}", Environment.NewLine, e);
}
}
}
}
我找了很长时间没有好的解决方案。请帮忙。
答案 0 :(得分:0)
0x80040112
CLASS_E_NOTLICENSED
“类未获许可使用”。该错误表明COM类需要设计时许可证。详情请见Licensing ActiveX Controls - Design-Time Licensing。那就是你需要这个控件的许可证,或者需要一个备用(也许是更好的)解决方案来实现套接字。