引用Web Service - 使用WSDL指令
一般我們在使用Web Service 的時候,都可以很簡單的利用IDE的介面工具直接引用;選擇加入之後,他就
會自動產生一堆相關檔案。
但是其實還有另外一種方式可以使用,那就是使用wsdl指令。
首先開啟Visual Studio Command Prompt,然後輸入以下指令:
wsdl /l:CS /out:weather.cs http://www.webservicex.net/globalweather.asmx /n:WebData.DSSample
這樣子就會產生一個weather.cs檔:
然後再建置成函式庫:
csc /t:library /out:weather.dll weather.cs /r:System.dll /r:System.Web.Services.dll /r:System.Data.dll /r:System.Xml.dll
這樣就可以直接使用weather.dll了!