Categories: Azure, C#, Cloud, Silverlight Posted by mheydt on 4/30/2009 9:13 PM | Comments (0)
In my previous post I showed how to rewrite urls which where applied to .asmx web service proxies.  In the last couple of days I needed to convert WCF client proxies for Silveright to do the same thing.  Turns out this is very similar (if not identical), but I found a new syntax for doing it which makes things a little bit easier.  Here is an example:



The ManagementServiceClient class is the proxy class generated for the WCF service.  The change is to use the App.Current.Host.Source variable and append the path to the .svc file.  Works like a champ and looks real nice.

Comments