Edge浏览器的每个请求都需要发送相应的响应。如果没有,配套UWP(和相关的Win32应用程序,如果有的话)退出引用" SystemPolicy"作为理由。 为了说明问题,我可以参考SecureInput示例。
/// <summary>
/// Receives message from Extension (via Edge)
/// </summary>
private async void OnAppServiceRequestReceived(AppServiceConnection sender, AppServiceRequestReceivedEventArgs args)
{
AppServiceDeferral messageDeferral = args.GetDeferral();
try
{
if (this.desktopBridgeAppLaunched)
{
this.currentConnectionIndex = Int32.Parse(sender.AppServiceName);
this.desktopBridgeConnection = desktopBridgeConnections[this.currentConnectionIndex];
// Send message to the desktopBridge component and wait for response
AppServiceResponse desktopBridgeResponse = await this.desktopBridgeConnection.SendMessageAsync(args.Request.Message);
await args.Request.SendResponseAsync(desktopBridgeResponse.Message);
}
else
{
throw new Exception("Failed to launch desktopBridge App!");
}
}
finally
{
messageDeferral.Complete();
}
}
通过注释掉调用&#34; SendResponseAsync(...)&#34;的行,UWP和Win32应用程序(PasswordInputProtection.exe)正在退出,因为&#34; OnAppServicesCanceled(... )&#34;使用SystemPolicy原因调用处理程序。
我理解,对于这个特定的例子,不发送回复是毫无意义的。但我有一些场景,没有必要将响应发送回Edge扩展。相反,我打算使用Win32 App中的SendMessageAsync(...)通过UWP App与Extension进行通信。
另外,我注意到我在网上找到的本机消息样本至少发送了一条无用的ACK消息,从UWP发送回扩展。那么,设计是否需要发送响应或者我在这里遗漏了什么?
答案 0 :(得分:1)
Edge团队对此进行了调查并确认其中一个组件存在错误。他们正在努力修复下一次更新。在修复完成之前,您需要始终发送响应。
感谢您报告此问题,并对此造成的不便表示抱歉!