I have some advanced WCF client work I would like to do with Windows Phone. Is IClientMessageInspector available? I don't see it.
IClientMessageInspector is in Silverlight 4 but Windows Phone 7 is based on Silverlight 3. As such it's not available on the phone.
Some functionlity form Silverlight 4 has been back ported to the phone but not this.
Related
What I observed is:
The System.ServiceModel.ServiceHost class is not available in .NET Core for UWP;
Duplex channel is PlatformNotSupportedException that doesn't support wcf callback.
So I wonder, UWP apps are designed to only work as WCF client? Isn't it possible to host a wcf service in a UWP app to make it like a server?
UWP Application worked in with limited folder access and limited capabilities.
To Host WCF Service it needs to act as web server. It does not have that capability included.
Below are the capabilities supported.
https://learn.microsoft.com/en-us/windows/uwp/packaging/app-capability-declarations
How can I call a Odata Service from my Windows Phone 8.1 App. There is no "Add Service Reference". Microsoft don't support this feature anymore for xaml Windows Phone 8.1 Apps.
How can I bind this Odata Service now?
Any ideas...
thanks
regards...
You can use the WebAuthenticationBroker
MSDN Reference
Windows Universal Apps Sample
Vittorio Bertocci wrote a great article to demonstrate how to use WebAuthenticationBroker with Office365 api (EWS/OData)
Link to the blog post
"Add Service Reference" is not supported any more, but a new one is in the landscape: T4. Please take a look at this blog post: http://blogs.msdn.com/b/odatateam/archive/2014/03/11/how-to-use-odata-client-code-generator-to-generate-client-side-proxy-class.aspx.
Can WCF/MEF/Unity be implemented in Silverlight using Windows Phone App ? Any pointers
Don't know about WCF or MEF, but the Unity team just announced Windows Phone 8 support for Unity.
I am trying to create a live chat and Video Conference and Video messages in silverlight 4.0. I have tried many code but they are not working for me. I am new in this type of code.how can I achieve this all?
You can use WCF (Windows Communication Foundation) for this. It allows you to build a "duplex"-communication between server and (Silverlight) client(s).
Google for wcf chat duplex silverlight - there are many examples out there.
The other way is to use sockets - it's faster but you have to build it on your own. WCF has many build in standards, so it can save you a lot of work.
I have to implement Local Messaging in our silverlight4 project.
Please suggest to me some good websites,blogs and video tutorials on local messaging
in Silverlight 4.
In our project we have 7 XAP files.
Regards,
JN
This post is in Danish and contains samples in Silverlight 2 using javascript and in Silverlight 3 using the message system (the one you want!). Let me know if it fits your needs.
http://xamlgeek.net/2009/08/18/kommunikation-mellem-silverlight-applikationer/