Assumption
- Binding configuration at WCF has debugging enabled
- Cross domain problem has been take care of since WCF and Service is running on different servers.
- 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 WCF Service from Silverlight and it took me one hour to find the solution, I had above three assumptions met and I was not able to debug WCF Service from Silverlight.
I had architecture of solution as below,
There is nothing unusual in above architecture. I had Silverlight, Web Application and WCF as part of the same solution. Problems came when I tried to debug WCF service from Silverlight. I was getting below information at breakpoint in the service side and I was never able to hit the service while debugging.
I binged 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 web application as Startup project
Put breakpoint on Xaml.cs and run Silverlight application and once hitting breakpoint on XAML page stop for a while
While breakpoint on XAML is in hit select Tool from the menu and choose Attach to Process option
And then attach WCF host server.
Once after attaching WCF host server you should able to hit the breakpoint in 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.
Follow @debug_mode
Leave a Reply