xSocket WebRTC示例错误

时间:2014-01-14 14:35:11

标签: asp.net webrtc xsockets.net

嗨我有一个问题我有一个应用程序即时解析它的相同的王子像facebook像mvc 4中的社交引擎我试图把视频会议我已经尝试在一个空的asp.net mvc4空互联网应用程序它的工作原理是xSocket.net WebRTC Sample,我的错误在哪里

所以我按照PM>的步骤进行操作。 Install-Package XSockets.Sample.WebRTC 1:添加一个新的XSockets.Web.Bootstrapper(ctrl + shift + a) 2:在“Web”选项卡下,转到“服务器”部分并设置“使用Visual Studio开发服务器”

using System.Web;
using XSockets.Core.Common.Socket;

[assembly: PreApplicationStartMethod(typeof(basicWebRTC.XSocketsWebBootstrapper1), "Start")]

namespace basicWebRTC
{
    public static class XSocketsWebBootstrapper1
    {
        private static IXSocketServerContainer wss;
        public static void Start()
        {
            wss = XSockets.Plugin.Framework.Composable.GetExport<IXSocketServerContainer>(); // when e start An exception of type 'XSockets.Plugin.Framework.Exceptions.ExportException' occurred in XSockets.Plugin.Framework.dll but was not handled in user code //

            wss.StartServers();
        }
    }
}

0 个答案:

没有答案