Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            int port   = 5000;
            var server = new HttpServer(port);

            server.AddJsonRpcService(() => new ChatJsonRpcWebSocketService());
            var info = new JsonRpcInfo
            {
                Description = "Api for JsonRpc chat",
                Title       = "Chat API",
                Version     = "v1",
                Contact     = new JsonRpcContact
                {
                    Name  = "JsonRpcNet",
                    Email = "*****@*****.**",
                    Url   = "https://github.com/JsonRpcNet"
                }
            };

            server.UseJsonRpcApi(info);

            server.Start();

            Console.WriteLine($"Now listening on: http://localhost:{port}{info.JsonRpcApiEndpoint}");
            Console.ReadLine();
            server.Stop();
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            int port   = 5000;
            var server = new HttpServer(port);

            server.AddJsonRpcService(() => new ChatJsonRpcWebSocketService());
            server.UseJsonRpcApi(new JsonRpcInfo
            {
                Description = "Api for JsonRpc chat",
                Title       = "Chat API",
                Version     = "v1",
                Contact     = new JsonRpcContact
                {
                    Name  = "The Dude",
                    Email = "*****@*****.**",
                    Url   = "http://www.thedude.com"
                }
            });

            server.Start();

            Console.WriteLine($"Now listening on: http://localhost:{port}");
            Console.ReadLine();
            server.Stop();
        }