0
Hi Sujeet,
There may be possibly issue in the configuration. it should looks like as below for net tcp binding.
- <system.serviceModel>
- <bindings>
- <netTcpBindingname="portSharingBinding"
- portSharingEnabled="true"/>
- </bindings>
- <services>
- <servicename="MyService">
- <endpointaddress="net.tcp://localhost/MyService"
- binding="netTcpBinding"
- contract="IMyService"
- bindingConfiguration="portSharingBinding"/>
- </service>
- </services>
- </system.serviceModel>
Also, please make sure net tcp port sharing service is enabled. You can check this from MMC console.
Hope, this will help you out. Feel free to write if you need more information on this.
Please don't forget to mark as answer if this helps