How to generate a WSDL file from a C# webservice

前端 未结 3 1144
一向
一向 2021-02-02 13:21

I\'ve created a WebService like this:

[WebService(Namespace = \"http://ns\")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class GroupMan         


        
3条回答
  •  名媛妹妹
    2021-02-02 14:14

    Svcutil.exe will definitely generate the WSDL with the service down. The correct usage is svcutil your.executable.dll(exe). I'm using this a lot so I'm sure it will generate the WSDL.

提交回复
热议问题