Can't Access Net TCP service From WCF Test Client

前端 未结 3 451
长发绾君心
长发绾君心 2021-01-23 05:31

I\'m trying to run two WCF services from within IIS one is a web service and one is a Net TCP Binding Service.

Here is a simulcrum of my Web.config (I\'ve anonymized the

3条回答
  •  一向
    一向 (楼主)
    2021-01-23 05:57

    For the HTTP endpoint, you need to reconfigure the Project Properties so that it starts your web.config defined endpoint at port 8523 if hosted using IIS Express. Use specific port (8523) instead of auto-assigned port (51953).

    For the TCP metadata, you need to support a TCP-enabled mex endpoint (mexTcpBinding).

    
    

提交回复
热议问题