Executing WS-Discovery from WinRT

I'd like to use WS-Discovery from a WinRT application I'm developing, but that doesn't seem to be available. Although it is available in .Net Frameworks WCF 4.0, they seem to have missed it from WinRT.

Since this is WinRT, I cannot link to System.ServiceModel.Discovery.

Can anyone recommend an alternative? Perhaps I could implement a basic version of this standard myself, but would like to avoid working if I can. A good OSS project can do that.

+3


source to share


1 answer


WS-Discovery is not supported by WinRT API.



The API supports UDP multicast, so I can use that to do peer-to-peer discoveries.

+2


source







All Articles