小编bel*_*far的帖子

无论如何在虚拟盒子上运行Kinect?

我在虚拟机上安装了Windows 7 64位.我想在其上运行任何kinect驱动程序,如openni,openkinect或kinect sdk我不想在本机环境中运行它.

有没有办法在oracle虚拟盒上运行kinect?

[更新]我通过安装openni http://i.stack.imgur.com/R5ZIr.png完成了这项工作

但是kinect仍然不起作用

注意:主机是Ubuntu 10.10 64位

virtualbox kinect openni

5
推荐指数
1
解决办法
3829
查看次数

控制台应用程序中的WCF托管服务中的MaxReceivedMessageSize

我的控制台应用程序中有托管的WCF服务,如下所示:

static void Main(string[] args)
    {
        Uri baseAddress = new Uri("http://localhost:8080/Test");
        // Create the ServiceHost.
        using (ServiceHost host = new ServiceHost(typeof(TestService), baseAddress))
        {
            // Enable metadata publishing.
            ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
            smb.HttpGetEnabled = true;
            smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
            host.Description.Behaviors.Add(smb);

            host.Open();

            Console.WriteLine("The Test service is ready at {0}", baseAddress);
            Console.WriteLine("Press <Enter> to stop the service.");



            Console.ReadLine();

            // Close the ServiceHost.
            host.Close();
        }  
    }
Run Code Online (Sandbox Code Playgroud)

我在Windows应用商店(WinRT)应用程序中有一个客户端.我越来越

"(413请求实体太大"

当试图传递一个大字节数组.如何MaxReceivedMessageSize通过代码设置我的服务?

c# wcf wcf-binding windows-runtime

3
推荐指数
1
解决办法
2984
查看次数

标签 统计

c# ×1

kinect ×1

openni ×1

virtualbox ×1

wcf ×1

wcf-binding ×1

windows-runtime ×1