tags:

views:

737

answers:

1

Is it possible to have both

  • NetTcp bound endpoints, and
  • basicHttp bound endpoints with SSL

within a single deployment, either using Windows Service or IIS6?

+1  A: 

Yes, a single service host can expose multiple endpoints with different bindings. However, normal IIS restrictions apply to IIS, so IIS 6 doesn't support NetTcp bindings to begin with.

jezell
Understand multiple endpoinds (which we already do), I am interested in the two endpoint types mentioned above in a single service.
Samuel Kim
Yes, what jezell said is correct. You can expose a service on multiple endpoints.
MichaelGG