xSocket WebRTC Sample error

560 Views Asked by At

Hi i have a problem i have a aplication that i m desenvolving an its the same princepel like facebook like a social engine in mvc 4 i am trying to put video-conference i already tried in a empty asp.net mvc4 empty internet application and it works xSocket.net WebRTC Sample so where is my error

so i followed the steps PM> Install-Package XSockets.Sample.WebRTC 1: Add a new XSockets.Web.Bootstrapper (ctrl+shift+a) 2: Under the "Web" tab go to the "Servers" section and set Use Visual Studio Development Server

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

There are 0 best solutions below