Hello,
I am trying to use Windows Notification Service behind a proxy.
i opened route described by Microsoft to use the service
<CloudServiceDNS>
<DNS FQDN="*.notify.windows.com"/>
</CloudServiceDNS>
<ClientDNS>
<DNS FQDN="*.wns.windows.com"/>
<DNS FQDN="*.notify.live.net"/>
</ClientDNS>
<CloudServiceIPs>
but when i try to make
channel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
I have an timeout exception
My application is a uwp application, created based on tutorials, enrolled with ms store and all is ok with it on a personnal laptop.
When i make a trace on my proxy, it seems windows try to access to https://login.live.com/ppsecure/deviceaddcredential.srf.
My question is: Is login.live.com access mandatory to get a wns channel?
If not, how can i resolve this channel?
Thanks by advance for your help