开发者

C# API with XSD/WSDL

开发者 https://www.devze.com 2023-03-09 06:05 出处:网络
I\'m used to adding a web reference in VS and building an API from there. 开发者_JAVA百科I was handed on WSDL document and two XSD documents to build an API from.How do I go about creating the API?

I'm used to adding a web reference in VS and building an API from there.

开发者_JAVA百科

I was handed on WSDL document and two XSD documents to build an API from. How do I go about creating the API?

Thanks in advance.


Try reading about the Wsdl.exe tool, which should build the C# classes for you from the Wsdl definition file.


Try something like this from the command line:

svcutil your.wsdl (or svcutil your.wsdl /l:vb if you want Visual Basic)

I got this from basically a duplicate question here.

0

精彩评论

暂无评论...
验证码 换一张
取 消