Rudra
Rudra

Reputation: 144

Hosting net.tcp wcf service in iis7

I have created a class library project to create WCF service for net.tcp binding, which contains datacontract, service contract and service implementation class, I have also added web.config file and a .svc file. After this i went ti iis7 to create an application under default website. I added binding to support net.tcp. But site is not showing option to browse with net.tcp binding. See below pic. enter image description here

I have checked WCF Non-HTTP Activation.

enter image description here

Services related to net.tcp are also running. enter image description here

Please help.

Upvotes: 0

Views: 35

Answers (1)

Botond Botos
Botond Botos

Reputation: 1242

But site is not showing option to browse with net.tcp binding

It is not showing up because net.tcp binding cannot be consumed from a web browser. However, this doesn't mean that you cannot consume it from a client application.

Upvotes: 1

Related Questions