0

We currently developed a UWP app and have push notifications working. However, the problem arises when users are on VPN the WNS channel does not get created and the app is no longer able to receive push notifications or register with notification hub. The channel is getting created here

var attempts = 0;
try{
    PushNotificationChannel channel = null;
    do
    {
        channel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
        attempts++;
    }while(channel == null && attempts< 3);
}

This works on the corp network a channel is created and the device gets registered with notification hub. On VPN the channel does not get created. Anyone experience this before or have any ideas?

4

1 に答える 1

0

スプリット トンネリングが無効になっているにもかかわらず、Cisco vpn クライアントのバグになってしまいました。クライアントは、wns トラフィックをトンネルではなくインターネットに直接送信しようとしていました。wns エンドポイントの例外が作成されると、uwp アプリはチャネルを取得できました。

于 2020-05-01T20:43:24.837 に答える