WCF服务支持HTTP(get,post)
WCF服务支持HTTP(get,post)方式请求例子
方式一:

/// <summary>
/// Http Get请求
/// </summary>
/// <param name="url">请求地址</param>
/// <param name="postData">请求参数</param>
/// <param name="result">返回结果</param>
/// <returns></returns>
public static bool WebHttpGet(string url, string postData, out string result)
{
try
{
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url + (postData == "" ? "" : "?") + postData);
httpWebRequest.Method = "GET";
httpWebRequest.ContentType = "text/html;charset=UTF-8"; WebResponse webResponse = httpWebRequest.GetResponse();
HttpWebResponse httpWebResponse = (HttpWebResponse)webResponse;
System.IO.Stream stream = httpWebResponse.GetResponseStream();
System.IO.StreamReader streamReader = new System.IO.StreamReader(stream, Encoding.GetEncoding("UTF-8"));
result = streamReader.ReadToEnd(); //请求返回的数据
streamReader.Close();
stream.Close();
return true;
}
catch (Exception ex)
{
result = ex.Message;
return false;
}
} /// <summary>
/// Http Post请求
/// </summary>
/// <param name="postUrl">请求地址</param>
/// <param name="postData">请求参数(json格式请求数据时contentType必须指定为application/json)</param>
/// <param name="result">返回结果</param>
/// <returns></returns>
public static bool WebHttpPost(string postUrl, string postData, out string result, string contentType = "application/x-www-form-urlencoded")
{
try
{
byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(postData); HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(postUrl);
httpWebRequest.Method = "POST";
httpWebRequest.ContentType = contentType;
httpWebRequest.ContentLength = byteArray.Length; using (System.IO.Stream stream = httpWebRequest.GetRequestStream())
{
stream.Write(byteArray, 0, byteArray.Length); //写入参数
} HttpWebResponse httpWebResponse = httpWebRequest.GetResponse() as HttpWebResponse;
using (System.IO.Stream responseStream = httpWebResponse.GetResponseStream())
{
System.IO.StreamReader streamReader = new System.IO.StreamReader(responseStream, Encoding.GetEncoding("UTF-8"));
result = streamReader.ReadToEnd(); //请求返回的数据
streamReader.Close();
}
return true;
}
catch (Exception ex)
{
result = ex.Message;
return false;
}
}

方式二:

/// <summary>
/// Http Get请求
/// </summary>
/// <param name="url">请求地址</param>
/// <param name="postData">请求参数</param>
/// <param name="trackId">为防止重复请求实现HTTP幂等性(唯一ID)</param>
/// <returns></returns>
public static string SendGet(string url, string postData, string trackId)
{
if (string.IsNullOrEmpty(trackId)) return null; //trackId = Guid.NewGuid().ToString("N");
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url + (postData == "" ? "" : "?") + postData);
httpWebRequest.Method = "GET";
httpWebRequest.ContentType = "text/html;charset=UTF-8";
httpWebRequest.Headers.Add("track_id:" + trackId); WebResponse webResponse = httpWebRequest.GetResponse();
HttpWebResponse httpWebResponse = (HttpWebResponse)webResponse;
System.IO.Stream stream = httpWebResponse.GetResponseStream();
System.IO.StreamReader streamReader = new System.IO.StreamReader(stream, Encoding.UTF8);
string result = streamReader.ReadToEnd(); //请求返回的数据
streamReader.Close();
stream.Close(); return result;
} /// <summary>
/// Http Post请求
/// </summary>
/// <param name="postUrl">请求地址</param>
/// <param name="postData">请求参数(json格式请求数据时contentType必须指定为application/json)</param>
/// <param name="trackId">为防止重复请求实现HTTP幂等性(唯一ID)</param>
/// <returns></returns>
public static string SendPost(string postUrl, string postData, string trackId, string contentType = "application/x-www-form-urlencoded")
{
if (string.IsNullOrEmpty(trackId)) return null; //trackId = Guid.NewGuid().ToString("N");
byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(postData); HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(postUrl);
httpWebRequest.Method = "POST";
httpWebRequest.ContentType = contentType;
httpWebRequest.ContentLength = byteArray.Length;
httpWebRequest.Headers.Add("track_id:" + trackId); System.IO.Stream stream = httpWebRequest.GetRequestStream();
stream.Write(byteArray, 0, byteArray.Length); //写入参数
stream.Close(); HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse();
System.IO.StreamReader streamReader = new System.IO.StreamReader(httpWebResponse.GetResponseStream(), Encoding.UTF8);
string result = streamReader.ReadToEnd(); //请求返回的数据
streamReader.Close(); return result;
} /// <summary>
/// 生成唯一标识符
/// </summary>
/// <param name="type">格式:N,D,B,P,X</param>
/// <returns></returns>
public static string GetGuid(string type = "")
{
//Guid.NewGuid().ToString(); // 9af7f46a-ea52-4aa3-b8c3-9fd484c2af12
//Guid.NewGuid().ToString("N"); // e0a953c3ee6040eaa9fae2b667060e09
//Guid.NewGuid().ToString("D"); // 9af7f46a-ea52-4aa3-b8c3-9fd484c2af12
//Guid.NewGuid().ToString("B"); // {734fd453-a4f8-4c5d-9c98-3fe2d7079760}
//Guid.NewGuid().ToString("P"); // (ade24d16-db0f-40af-8794-1e08e2040df3)
//Guid.NewGuid().ToString("X"); // {0x3fa412e3,0x8356,0x428f,{0xaa,0x34,0xb7,0x40,0xda,0xaf,0x45,0x6f}}
if (type == "")
return Guid.NewGuid().ToString();
else
return Guid.NewGuid().ToString(type);
}

//-------------WCF服务端web.config配置如下:----------------

<system.serviceModel>
<services>
<service name="WCFService.WebUser">
<!--WCF中提供了Web HTTP访问的方式-->
<endpoint binding="webHttpBinding" behaviorConfiguration="WebBehavior" contract="WCFService.IWebUser" />
<!--提供WCF服务 , 注意address='Wcf',为了区分开与Web HTTP的地址,添加引用之后会自动加上的-->
<endpoint address="Wcf" binding="basicHttpBinding" contract="WCFService.IWebUser"/>
</service>
</services>
<behaviors>
<!--WCF中提供了Web HTTP的方式-->
<endpointBehaviors>
<behavior name="WebBehavior">
<webHttp helpEnabled="true" />
</behavior>
</endpointBehaviors>
<!--WCF中提供了Web HTTP的方式-->
<serviceBehaviors>
<behavior>
<!-- 为避免泄漏元数据信息,请在部署前将以下值设置为 false -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- 要接收故障异常详细信息以进行调试,请将以下值设置为 true。在部署前设置为 false 以避免泄漏异常信息 -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>

//-------------WCF服务-------------

namespace WCFService
{
// 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的接口名“IWebUser”。
[ServiceContract]
public interface IWebUser
{
[OperationContract]
[WebGet(RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "/ShowName?name={name}")]
string ShowName(string name); [OperationContract]
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "/ShowNameByPost/{name}")]
string ShowNameByPost(string name);
}
}

//-----------客户端传统方式和web http方式调用----------------

public static void Main(string[] args)
{
WebUserClient webUser = new WebUserClient();
Console.WriteLine("请输入姓名!");
string webname = Console.ReadLine();
string webresult = webUser.ShowName(webname);
Console.WriteLine(webresult); Console.WriteLine("请输入姓名!");
string getData = Console.ReadLine();
string apiGetUrl = "http://localhost:8423/WebUser.svc/ShowName";
string jsonGetMsg = string.Empty;
bool strGetResult = WebHttpGet(apiGetUrl, "name=" + getData, out jsonGetMsg);
Console.WriteLine("请求结果:" + strGetResult + ",返回结果:" + jsonGetMsg); Console.WriteLine("请输入姓名!");
string postData = Console.ReadLine();
string apiPostUrl = "http://localhost:8423/WebUser.svc/ShowNameByPost";
string jsonPostMsg = string.Empty;
bool strPostResult = WebHttpPost(apiPostUrl, "/" + postData, out jsonPostMsg);
Console.WriteLine("请求结果:" + strPostResult + ",返回结果:" + jsonPostMsg);
Console.ReadLine();
}
WCF服务支持HTTP(get,post)的更多相关文章
- 在IIS8添加WCF服务支持
最近在做Silverlight,Windows Phone应用移植到Windows 8平台,在IIS8中测试一些传统WCF服务应用,发现IIS8不支持WCF服务svc请求,后来发现IIS8缺少对WCF ...
- 【IIS8】在IIS8添加WCF服务支持
最近在做Silverlight,Windows Phone应用移植到Windows 8平台,在IIS8中测试一些传统WCF服务应用,发现IIS8不支持WCF服务svc请求,后来发现IIS8缺少对WCF ...
- WCF服务支持HTTP(get,post)方式请求例子
https://www.cnblogs.com/li150dan/p/9529413.html /// <summary> /// Http Get请求 /// </summary& ...
- C# WCF服务入门
之前在公司用的服务端是wcf写的,但是没有深入研究,最近找工作,面试的时候好多人看到这个总提问,这里做个复习 就用微软官方上的例子,搭一个简单的wcf服务,分6步 1 定义服务协定也就是契约,其实就是 ...
- 轻松搞定Win8 IIS支持SVC 从而实现IIS寄宿WCF服务
写在前面 为了尝试在IIS中寄宿WCF服务,需要配置IIS支持SVC命令,于是便有了在DOS命令中用到ServiceModelReg.exe注册svc命令. 坑爹的是注册成功后就开始报错.无奈之下两次 ...
- IIS10 设置支持wcf服务(.svc)
感谢: http://www.cnblogs.com/dudu/p/3328066.html 如果提示web.config配置重复的话,很有可能是.net framework版本的问题,把IIS中的版 ...
- WCF技术剖析之五:利用ASP.NET兼容模式创建支持会话(Session)的WCF服务
原文:WCF技术剖析之五:利用ASP.NET兼容模式创建支持会话(Session)的WCF服务 在<基于IIS的WCF服务寄宿(Hosting)实现揭秘>中,我们谈到在采用基于IIS(或者 ...
- 如何让WCF服务更好地支持Web Request和AJAX调用
WCF的确不错,它大大地简化和统一了服务的开发.但也有不少朋友问过我,说是在非.NET客户程序中,有何很好的方法直接调用服务吗?还有就是在AJAX的代码中(js)如何更好地调用WCF服务呢? 我首先比 ...
- 关于WCF服务 http://XXXXXX/XXX/xxx.svc不支持内容类型 application/sop+xml;charset=utf-8 错误解决方法
有时候用IIS部署一个WCF服务时,无论是在客户端还是在服务端通过地址都能正常访问. 但是当你在客户端添加服务引用时, 怎么也添加不上, 会碰到了如下错误: 好啦. 现在说说怎么解决吧. 其实很简单. ...
随机推荐
- 五分钟看懂UML类图与类的关系详解
在画类图的时候,理清类和类之间的关系是重点.类的关系有泛化(Generalization).实现(Realization).依赖(Dependency)和关联(Association).其中关联又分为 ...
- linux应用管理
desktop文件的几个位置: /usr/share/applications ~/.local/share/applications /usr/local/share/applications li ...
- 回忆C++
内联函数 内联函数适用于函数较为短小的情况. 内联函数存在的意义是:提高程序运行效率. 内联函数的缺点:如果一个内联函数太长且频繁调用,会导致生成的可执行程序较大. 静态链接库会被嵌入到生成的可执行程 ...
- 元素增删事件DOMNodeInserted和DOMNodeRemoved
监听元素变化的三种方法: 对于表单类型的控件,使用onchange事件最好. 使用DOMNodeInserted和DOMNodeRemoved事件 使用定时器定时检测(下策) 有时需要给一个class ...
- SharpGL之透视投影和摄像机
当三维体放在世界坐标系中后,由于显示器只能用二维图像显示三维休,因此必须要依赖投影来把三维体降低维数. 投影变换的目的就是定义了一个视景体,使得视景体外多余的部分不会显示. 投影包括透视投影(pers ...
- 想入门Web安全,这些基础知识都学会了吗?
毕业季已经正式告一段落,这届毕业生都找到心仪的工作了吗? 正在实习期或者试用期的职场新人,是否在岗位上做的风生水起? 工作了一两年,从未升职加薪的菜鸟,还愿意继续原地踏步吗? 在校学生.IT从业者.毕 ...
- sparkstreaming 黑名单过滤
要用到transform and rdd.leftOuterJoin transform: 使 DStream 和 RDD 之间的类型进行了转换,然后可以进行调用 leftOuterJoin(左外连接 ...
- 数字、字符串、列表、字典,jieba库,wordcloud词云
一.基本数据类型 什么是数据类型 变量:描述世间万物的事物的属性状态 为了描述世间万物的状态,所以有了数据类型,对数据分类 为什么要对数据分类 针对不同的状态需要不同的数据类型标识 数据类型的分类 二 ...
- mysql-5..6.23-win64.zip安装及配置
MySQL是一个小巧玲珑但功能强大的数据库,目前十分流行.但是官网给出的安装包有两种格式,一个是msi格式,一个是zip格式的.很多人下了zip格式的解压发现没有setup.exe,面对一堆文件一头雾 ...
- Centos7部署ejforum论坛(Java+tomcat+mysql)
前面搭建Java环境和tomcat环境. 下面进行实战,搭建ejforum论坛 ejforum论坛源码:https://www.lanzous.com/i45rcoh Centos7安装MySQL数据 ...