I have a WCF service hosted in WAS using net.tcp. Am I correct in thinking that this runs under a svchost process? If so, how do you use “attach to process” in VS to debug?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
@Shiraz is correct. Your application code will run in an application pool represented by the process w3wp.exe. W3WP.EXE is the process you will need to attach to to debug your application code.
WAS provides a model for receiving messages from a non-http transport while still taking advantage of the application hosting model of IIS.
To learn how to attach to a process from Visual Studio, see How to: Attach to a Process.
For an overview of WAS and net.tcp see Introduction to IIS 7.0 Architecture.