Debugging a WCF Service from Silverlight


Assumption

  1. Binding configuration at WCF has debugging enabled
  2. Cross domain problem has been take care of since WCF and Service is running on different servers.
  3. Visual studio is running in administrator credentials or credentials having enough permission to debug on server.

While working today I came across a requirement to debug a WCF Service from Silverlight and it took me one hour to find the solution, I had the above three assumptions met and I was not able to debug WCF Service from Silverlight.

I had the architecture of solution as below,

WCFSil1.gif

There is nothing unusual in the above architecture. I had Silverlight, Web Application and WCF as part of the same solution. The problems came when I tried to debug the WCF service from Silverlight. I was getting the below information at the breakpoint in the service side and I was never able to hit the service while debugging.

WCFSil2.gif

I binged a lot but did not get quiet good solution suggesting solving this. Eventually I found it very simple way to solve this.

Follow steps as below to hit the breakpoint in the service ,

Set the web application as the Startup project

WCFSil3.gif

Put a breakpoint on Xaml.cs and run the Silverlight application and upon hitting the  breakpoint on the XAML page stop for a while

WCFSil4.gif

While the breakpoint on XAML is hit, select Tools from the menu and choose Attach to Process.

WCFSil5.gif

And then attach to the WCF host server.

WCFSil6.gif

Once after attaching to the WCF host server you should able to hit the breakpoint in the  WCF Service from Silverlight.

I hope this post was useful. Thanks for reading.

If you find my posts useful you may like to follow me on twitter http://twitter.com/debug_mode or may like Facebook page of my blog http://www.facebook.com/DebugMode.Net If you want to see post on a particular topic please do write on FB page or tweet me about that, I would love to help you.

 

Up Next
    Ebook Download
    View all
    Learn
    View all