我使用c#(WCF
)开发nettcpbinding
服务,我想在php程序中使用它,所以我想我必须将其更改为标准webservice,如何转换此wcf服务到网络服务?(asmx)
答案 0 :(得分:4)
您不必将其转换为asmx。您可以使用BasicHttpBinding
或WebHttpBinding
创建另一个端点。
查看这篇文章,了解为何不使用asmx服务:
http://johnwsaunders3.wordpress.com/2011/12/07/more-reasons-to-not-use-asmx-services-in-new-code/