码迷,mamicode.com
首页 > Web开发 > 详细

asp.net 手工调用 WS(Get)方法:

时间:2015-05-01 15:55:51      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

asp.net 手工调用 WS(Get)方法:

通过手工HttpWebRequest,HttpWebResponse来模拟调用。
核心代码:
string strurl="http://localhost:21696/service1.asmx/getmythod?aa=1";
HttpWebRequest request=(HttpWebRequest) WebRequest.Creates(strurl);
//request.Method="get"
HttpWebResponse response=(System.Net.HttpWebResponse)request.GetResponse();
Stream s=response.GetResponseStream();
XmlTextReader Reader=new XmlTextReader(s);
Reader.MoveToContent();
string strValue=Reader.ReaderInnerXml();
strValue=strValue.Replace("&lt;","<");
strValue=strValue.Replace("&gt;",">");
Regex rx=new Regex(@"(\r\n+)");
strValue =rx.Replace(strValue,"");
div1.InnerHtml=strValue;
Reader.Close();

 

注意事项:webservice所在的web.config里面要添加:
<webServices>
<protocols>
<add name="HttpPost"/>
<add name="HttpGet"/>
</protocols>
</webServices>

 

安全风险增加

asp.net 手工调用 WS(Get)方法:

标签:

原文地址:http://www.cnblogs.com/handsome1234/p/4470700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!