博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2010年9月2日

摘要: 手工发送HTTP请求主要是调用System.Net的HttpWebResponse方法 手工发送HTTP的GET请求: string strURL = 'http://localhost/Play/CH1/Service1.asmx/doSearch?keyword='; strURL +=this.textBox1.Text; System.Net.HttpWebRequest request; //创建一个HTTP请求 request = (System.Net.HttpWebRequest)WebRequest.Create(strURL); //request.Meth 阅读全文

posted @ 2010-09-02 20:00 codingsilence 阅读(474) 评论(0) 推荐(0) 编辑

摘要: 不记得在哪儿看的了,当时存下来了,现在贴出来,供参考。using System;using System.Web;using System.Xml;using System.Collections;using System.Net;using System.Text;using System.IO;using System.Xml.Serialization;//By huangz 2008-3-19/// <summary>/// 利用WebRequest/WebResponse进行WebService调用的类/// </summary>public class We 阅读全文

posted @ 2010-09-02 19:59 codingsilence 阅读(409) 评论(0) 推荐(0) 编辑

摘要: 目录: 1 后台调用Webservice的业务需求 2 WebService支持的交互协议 3 如何配置WebService支持的协议 4 后台对WebService的调用 4.1 SOAP 1.1 后台调用实例 4.2 SOAP 1.2 后台调用实例 注:本文章的开发环境为VSS2008 .net FrameWork 3.5 本文章设计到使用的代码示例的WebService 为 服务路径:http://localhost/WebServiceTest/Service1.asmx 服务接口: [WebMethod] public string HelloWorld(string Studen. 阅读全文

posted @ 2010-09-02 19:51 codingsilence 阅读(154) 评论(0) 推荐(0) 编辑