在Windows IoT核心上运行后台应用程序

时间:2016-03-03 19:46:24

标签: c# win-universal-app windowsiot

我已经创建了一个运行WebService的BackgroundTask,但是如果我运行附带调试器的解决方案,一切都很好,慢,但很好。但是当我在appmanager(webinterface)中点击时,它总是说"无法启动包[MYPACKAGEID]"。那我错过了什么?

以下是完整的项目:https://github.com/naice/HomeAutomation.git

public sealed class StartupTask : IBackgroundTask
{
    internal static BackgroundTaskDeferral Deferral = null;

    public async void Run(IBackgroundTaskInstance taskInstance)
    {
        // 
        // TODO: Insert code to perform background work
        //
        // If you start any asynchronous methods here, prevent the task
        // from closing prematurely by using BackgroundTaskDeferral as
        // described in http://aka.ms/backgroundtaskdeferral
        //

        Deferral = taskInstance.GetDeferral();

        await ThreadPool.RunAsync(async workItem => {

            RestWebServer restWebServer = new RestWebServer(80);
            try
            {
                // initialize webserver
                restWebServer.RegisterController<Controller.Home.Home>();
                restWebServer.RegisterController<Controller.PhilipsHUE.Main>();
                await restWebServer.StartServerAsync();
            }
            catch (Exception ex)
            {
                Log.e(ex);
                restWebServer.StopServer();
                Deferral.Complete();
            }

        }, WorkItemPriority.High);
    }
}

2 个答案:

答案 0 :(得分:3)

重点是代码甚至清单都没有问题,似乎它并不意味着在设备处于&#34;标题时运行。模式,您需要将其设置为satrtup无头应用程序,然后重新启动设备。

答案 1 :(得分:1)

编辑:所有这些问题都在最新版本10.0.14279.1000中消失了,现在GUI终于可以正常工作了。

我一直在努力解决这个问题,并且通过这种可以帮助某人的方法取得了巨大的成功。一切都在Power Shell中完成

将设备置于无头模式,在某种程度上我不认为这是强制性的,但没有它就没有成功。 编辑:不再是这种情况,它现在可以正常工作。

https://ms-iot.github.io/content/en-US/win10/HeadlessMode.htm

以无头模式启动应用并将其添加到启动应用列表中 要查看启动列表中的应用程序类型

IotStartup startup

在命令中添加无头应用类型

IotStartup add headless [Task1]

在命令中添加无头应用类型

IotStartup startup headless [Task1]

要查找应用名称,您可以使用命令

IotStartup list

要查看您的应用是否处于启动列表类型

IotStartup startup

然后重新启动你的设备!

我还遇到了一些与从启动中删除应用程序相关的问题,然后尝试通过Visual Studio调试它们,在某些情况下,唯一的解决方案是使用新映像刷新SD卡。

有关可用命令的完整列表

https://ms-iot.github.io/content/en-US/win10/tools/CommandLineUtils.htm