tags:

views:

77

answers:

2

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

A: 

I think that it runs in the application pool, the process name is w3.. something.

Shiraz Bhaiji
A: 

@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.

Zach Bonham