将WCF服务转换为asmx

时间:2013-12-28 11:30:43

标签: c# wcf web-services asmx

我使用c#(WCF)开发nettcpbinding服务,我想在php程序中使用它,所以我想我必须将其更改为标准webservice,如何转换此wcf服务到网络服务?(asmx)

1 个答案:

答案 0 :(得分:4)

您不必将其转换为asmx。您可以使用BasicHttpBindingWebHttpBinding创建另一个端点。

查看这篇文章,了解为何不使用asmx服务:

http://johnwsaunders3.wordpress.com/2011/12/07/more-reasons-to-not-use-asmx-services-in-new-code/