How to use WCF services in Windows 10 Universal App?

后端 未结 2 1981
旧巷少年郎
旧巷少年郎 2020-12-30 10:35

My Windows 8.1 app uses WCF services. I need to port my app to Windows 10 UWP app. But cannot add service reference. This message appears when I add a service reference:

相关标签:
2条回答
  • 2020-12-30 10:56

    I also have this problem. The workaround I used was that I created a Portable Class Library targeting only Windows Runtime and added the service reference into that and I referenced the PLC in the UWP app. Btw. I think this is a known bug...

    0 讨论(0)
  • 2020-12-30 11:00

    Thank you for @gregkalapos

    1. Create Windows 8.1 Portable class library

    2. Choose like this

    3. Add Service Reference to newly created library. Then reference library to Windows 10 Universal App project.

    This is example call method:

    var client = new ConnectODataEntities(new Uri("http://...ODATA URL..."));
    var dsQuery = (DataServiceQuery<YOUR_METHOD_RETURN_TYPE>)(client.YOUR_METHOD);
    
    var tf = new TaskFactory<IEnumerable<YOUR_METHOD_RETURN_TYPE>>();
    var list = (await tf.FromAsync(dsQuery.BeginExecute(null, null),
                                iar => dsQuery.EndExecute(iar))).ToList();
    
    
    
    lbox.ItemsSource = list;
    

    This method used app works on Windows 10 and Windows 10 Mobile

    0 讨论(0)
提交回复
热议问题