I\'m trying to get a Server application to expose some status information using WCF. In particular I\'m after using WCF services with RESTful \"API\". I\'m hitting somewhat of a
I almost hate to suggest it but would you feel comfortable with reimplementing the WebChannelFactory
From a cursory glance through the Silverlight API it looks like you won't get much help from Microsoft out of the box. You'd need to reimplement a channel class and a factory for it.
Perhaps another way to create the channel and to isolate yourself from the platform-specific code is to create a custom implementation of it? Specifically what I mean is, you create yet another factory class, and the factory class either calls to the WebChannelFactory when it's available, or goes through the hoops of setting it up for you.
Sorry I don't have a more in-depth suggestion. :)