WCF, net.tcp, and ASP.NET development server
        Posted  
        
            by bryanjonker
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by bryanjonker
        
        
        
        Published on 2010-04-09T12:55:48Z
        Indexed on 
            2010/04/09
            13:03 UTC
        
        
        Read the original article
        Hit count: 729
        
I'm setting up a net.tcp WCF service using instructions here: http://blogs.msdn.com/swiss_dpe_team/archive/2008/02/08/iis-7-support-for-non-http-protocols.aspx
One of the steps says to do the following: "If you open the IIS7 management console and you look at the advance setting of our IIS7HostedService Web Application, you will see that in the Enabled Protocols section just http is defined. You now have to add net.tcp (separated by a comma), so that our service will be able to respond also to TCP requests."
This is fine, but what if I want to use the Cassini / VS2010 ASP.NET development server to debug (hitting F5 or cntrl-F5)? I don't think there's a way to change the settings in that IIS. Or is there? Are other programmers just so awesome that they don't need to go through the debugger? Or do they use wsHttpBinding?
© Stack Overflow or respective owner