Reputation: 19171
I have a C++ web service that needs to send/receive data from a Silverlight client.
Can I still use the WCF RIA client or do I need to use the sockets library directly?
Note that I'm pretty flexible on using HTTP or not, and I even prefer not to use the HTTP protocol.
Upvotes: 0
Views: 110
Reputation: 51898
Now this is just me thinking outloud here. But I'd assume that since you're using a C++ web service you're too low level to be doing anything WCF based (as WCF is usually a C# thing).
As far as using a sockets library directly, I think that a silverlight app can't do that for security reasons. Sockets are mainly for a client app that you have built yourself. But silverlight is a web client, So I would think that you'd only be left to use http requests.
Upvotes: 1