之前調(diào)用 WebService 都是直接添加服務(wù)引用,然后調(diào)用 WebService 方法的,最近發(fā)現(xiàn)還可以使用 Http 請(qǐng)求調(diào)用 WebService。這里還想說(shuō)一句,還是 web api 的調(diào)用簡(jiǎn)單。
連山網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,連山網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為連山成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的連山做網(wǎng)站的公司定做!
WebService 服務(wù)端代碼:
public class WebServiceDemo : System.Web.Services.WebService { [WebMethod] public string HelloWorld() { return "Hello World"; } [WebMethod] public string Sum(string param1, string param2) { int num1 = Convert.ToInt32(param1); int num2 = Convert.ToInt32(param2); int sum = num1 + num2; return sum.ToString(); } }
很簡(jiǎn)單的代碼,只是用于演示。
客戶端調(diào)用代碼:
class Program { static void Main(string[] args) { Program program = new Program(); string url = "http://localhost:12544/WebServiceDemo.asmx"; string method = "Sum"; string num1 = "1"; string num2 = "2"; string result = program.HttpPostWebService(url, method, num1, num2); Console.WriteLine(result); Console.ReadKey(); } public string HttpPostWebService(string url,string method,string num1,string num2) { string result = string.Empty; string param = string.Empty; byte[] bytes = null; Stream writer = null; HttpWebRequest request = null; HttpWebResponse response = null; param = HttpUtility.UrlEncode("param1") + "=" + HttpUtility.UrlEncode(num1) + "&" + HttpUtility.UrlEncode("param2") + "=" + HttpUtility.UrlEncode(num2); bytes = Encoding.UTF8.GetBytes(param); request = (HttpWebRequest)WebRequest.Create(url + "/" + method); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; request.ContentLength = bytes.Length; try { writer = request.GetRequestStream(); //獲取用于寫入請(qǐng)求數(shù)據(jù)的Stream對(duì)象 } catch (Exception ex) { return ""; } writer.Write(bytes, 0, bytes.Length); //把參數(shù)數(shù)據(jù)寫入請(qǐng)求數(shù)據(jù)流 writer.Close(); try { response = (HttpWebResponse)request.GetResponse(); //獲得響應(yīng) } catch (WebException ex) { return ""; } #region 這種方式讀取到的是一個(gè)返回的結(jié)果字符串 Stream stream = response.GetResponseStream(); //獲取響應(yīng)流 XmlTextReader Reader = new XmlTextReader(stream); Reader.MoveToContent(); result = Reader.ReadInnerXml(); #endregion #region 這種方式讀取到的是一個(gè)Xml格式的字符串 //StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8); //result = reader.ReadToEnd(); #endregion response.Dispose(); response.Close(); //reader.Close(); //reader.Dispose(); Reader.Dispose(); Reader.Close(); stream.Dispose(); stream.Close(); return result; } }
第一種讀取方式的返回結(jié)果:
第二種讀取方式的返回結(jié)果:
PS:如果遇到調(diào)用時(shí)報(bào)錯(cuò),可以嘗試在服務(wù)端(即WebService)的 web.config 配置中添加如下配置節(jié)點(diǎn)。
<system.web> <webServices> <protocols> <add name="HttpPost" /> </protocols> </webServices> </system.web>
參考:C#使用Http Post方式傳遞Json數(shù)據(jù)字符串調(diào)用Web Service
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
新聞標(biāo)題:C#使用HttpPost請(qǐng)求調(diào)用WebService的方法
轉(zhuǎn)載來(lái)源:http://aaarwkj.com/article40/iihjeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、網(wǎng)站內(nèi)鏈、品牌網(wǎng)站設(shè)計(jì)、營(yíng)銷型網(wǎng)站建設(shè)、企業(yè)建站、網(wǎng)站營(yíng)銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)