1

I've searched and didn't find any question similar, so I'm asking.

Is it possible to use IIS with transport other thna HTTP?

If so, how to configure it?

Paulo Santos
  • 11,285
  • 4
  • 39
  • 65

1 Answers1

4

Yes. This can be done in IIS7. You have to enable the protocols that you want to use and then just create the appropriate endpoints for your service. Here's an example of doing that using net.tcp as the transport.

alt text
(source: singingeels.com)

alt text
(source: singingeels.com)

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Jose Basilio
  • 50,714
  • 13
  • 121
  • 117
  • 1
    strictly speaking, this is "WAS" in IIS7 - the Windows Process Activation Service. IIS itself (especially v5.x, v6.x) can host ONLY http. – marc_s Jun 12 '09 at 13:49