这可能是一个非常简单的问题,但我找不到答案:
对于客户端,我需要HOST一个webservice.客户端向我发送了一个webservice应该“实现”的wsdl文件.我该怎么办?我已经生成了任何数量的客户端,但这是相反的.我可以使用ASP.NET 2.0 Web服务或Windows Communication Foundation.
解决方法
@L_301_1@.
Generates an abstract class for an XML
Web service based on the contracts.
The default is to generate client
proxy classes. When using the
/parameters option,this value is a
element that contains
“server”.
您可以使用svcutil.exe为WCF做类似的事情,如:
svcutil.exe thewsdl.wsdl / language:c#/out:ITheInterface.cs(我没有测试过).
编辑约翰·桑德斯(John Saunders)在他的回答中表示赞成WCF方法 – 我也推荐这个.