wsdl.exe /l:cs /n:myNamespace /out:myFilename.cs http://www.abc.com/hello/hello.asmx?wsdl
将生成的文件如myFilename.cs,通过CSC或者VBC编译工具,生成相应的Proxy Dll文件即可如:
csc /target:library /out:"c:\proxy.dll" c:\proxy.cs  

wsdl /l:cs /n:BbsInterface /out:ForPngWebService.cs http://10.0.0.1/ForPngWebService.asmx?wsdl
csc /target:library /out:"ForPngWebServiceProxy.dll" D:\WebSite\ForPngWebService.cs

相关文章:

  • 2021-08-05
  • 2021-10-29
  • 2022-12-23
  • 2021-06-06
  • 2022-12-23
  • 2022-01-08
  • 2021-07-03
猜你喜欢
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2021-04-02
  • 2021-12-28
  • 2021-05-28
  • 2022-12-23
相关资源
相似解决方案