.NET RESTful Web Services入门
很早之前看到过RESTful Web Services,并未在意,也没找相关资料进行学习。今天偶尔有一机会,就找了点资料进行研究,发现RESTful真是“简约而不简单”。下面用示例来说明:
1 项目结构
2 REST 服务接口定义
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ServiceModel;
- using System.ServiceModel.Web;
- namespace Jack_Restful_Service
- {
- [ServiceContract(Name = "RestfulService",Namespace="http://www.cnblogs.com/isaboy")]
- public interface IRestDemoServices
- {
- [OperationContract]
- [WebGet(UriTemplate = Routing.GetClientRoute, BodyStyle = WebMessageBodyStyle.Bare)]
- string GetClientNameById(string Id);
- [OperationContract]
- [WebGet(UriTemplate = Routing.AddClientRoute, BodyStyle = WebMessageBodyStyle.Bare)]
- string Add(string a, string b);
- //error
- //string Add(int a, int b);
- [OperationContract]
- [WebGet(UriTemplate = Routing.LoginClientRoute, BodyStyle = WebMessageBodyStyle.Bare)]
- string Login(string uname, string upwd);
- //post
- [OperationContract]
- [WebInvoke(RequestFormat = WebMessageFormat.Json,
- ResponseFormat = WebMessageFormat.Json,
- BodyStyle = WebMessageBodyStyle.Bare,
- Method = "POST", UriTemplate = "/Client/UpdateUser/{uname}")]
- User UpdateUser(string uname, User newUser);
- }
- //URI路由
- public static class Routing
- {
- public const string GetClientRoute = "/Client/{id}";
- public const string AddClientRoute = "/Client/{a},{b}";
- //{uname}里面的参数名称要和string Login(string uname, string upwd);一致
- public const string LoginClientRoute = "/Client/{uname}__{upwd}";
- }
- }
3 REST服务接口实现
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ServiceModel;
- using System.ServiceModel.Activation;
- namespace Jack_Restful_Service
- {
- [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single,
- ConcurrencyMode = ConcurrencyMode.Single,
- IncludeExceptionDetailInFaults = true,
- Namespace = "http://www.cnblogs.com/isaboy")]
- [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
- public class RestDemoServices : IRestDemoServices
- {
- //GET
- public string GetClientNameById(string Id)
- {
- string ReturnString = "Your id is: " + Id;
- return ReturnString;
- }
- public string Add(string a, string b)
- {
- int sum = int.Parse(a) + int.Parse(b);
- return sum.ToString();
- }
- public string Login(string uname, string upwd)
- {
- if (uname == "admin" && upwd == "admin")
- {
- return "success";
- }
- else
- {
- return "false";
- }
- }
- //POST
- public User UpdateUser(string uname, User newUser)
- {
- return newUser;
- }
- }
- }
4 将服务HOST
- Console.WriteLine("----------Restful Service Start--------------");
- RestDemoServices demoServices = new RestDemoServices();
- WebServiceHost _serviceHost = new WebServiceHost(demoServices, new Uri("http://localhost:8000/RestfulService"));
- _serviceHost.Open();
- Console.WriteLine("----------Restful Service Opened--------------");
- Console.WriteLine("http://localhost:8000/RestfulService/Client/8");
- Console.WriteLine("http://localhost:8000/RestfulService/Client/2,5");
- Console.WriteLine("http://localhost:8000/RestfulService/Client/admin__admin");
5 打开浏览器,即可进行资源访问
另外,我们可以用代码进行测试
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Web;
- using System.Net;
- using System.IO;
- namespace PostServiceTest
- {
- class Program
- {
- static void Main(string[] args)
- {
- //get
- HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://localhost:8000/RestfulService/Client/8");
- WebResponse response = request.GetResponse();
- string result = new StreamReader(response.GetResponseStream()).ReadToEnd();
- Console.WriteLine(result);
- //post
- string requestData = "{\"uname\":\"admin\",\"upwd\":\"admin\"}";
- byte[] data = Encoding.UTF8.GetBytes(requestData);
- request = (HttpWebRequest)WebRequest.Create("http://localhost:8000/RestfulService/Client/UpdateUser/admin");
- request.Method = "POST";
- request.ContentType = "application/json";
- Stream dataStream = request.GetRequestStream();
- dataStream.Write(data, , data.Length);
- dataStream.Close();
- response = request.GetResponse();
- result = new StreamReader(response.GetResponseStream()).ReadToEnd();
- Console.WriteLine(result);
- Console.ReadKey();
- }
- }
- }
.NET RESTful Web Services入门的更多相关文章
- RESTful Web Services初探
RESTful Web Services初探 作者:杜刚 近几年,RESTful Web Services渐渐开始流行,大量用于解决异构系统间的通信问题.很多网站和应用提供的API,都是基于RESTf ...
- Jersey the RESTful Web Services in Java
Jersey 是一个JAX-RS的实现, JAX-RS即Java API for RESTful Web Services, 支持按照表述性状态转移(REST)架构风格创建Web服务. REST 中最 ...
- 使用 Spring 3 来创建 RESTful Web Services
来源于:https://www.ibm.com/developerworks/cn/web/wa-spring3webserv/ 在 Java™ 中,您可以使用以下几种方法来创建 RESTful We ...
- 就是这么简单!使用Rest-assured 测试Restful Web Services
使用 Rest-assured 测试 Restful Web Services 转载注明出处: http://www.cnblogs.com/wade-xu/p/4298819.html 这里向大家介 ...
- cxf开发Restful Web Services
一.restful web services rest全称是Representation State Transfer(表述性状态转移).它是一种软件架构风格,只是提供了一组设计原则和约束条件.在re ...
- RESTful Web Services测试工具推荐
命令行控的最爱:cURL cURL是一个很强大的支持各种协议的文件传输工具,用它来进行RESTful Web Services的测试简直是小菜一碟.这个工具基本上类Unix操作系统(各种Linux.M ...
- 【转】RESTful Web Services初探
近几年,RESTful Web Services渐渐开始流行,大量用于解决异构系统间的通信问题.很多网站和应用提供的API,都是基于RESTful风格的Web Services,比较著名的包括Twit ...
- 使用 Spring 3 来创建 RESTful Web Services(转)
使用 Spring 3 来创建 RESTful Web Services 在 Java™ 中,您可以使用以下几种方法来创建 RESTful Web Service:使用 JSR 311(311)及其参 ...
- 基于Spring设计并实现RESTful Web Services(转)
基于Spring设计并实现RESTful Web Services 在本教程中,你将会使用Spring来创建一个具有生产力的RESTful网络服务. 为什么用RESTful网络服务? 从和Amazon ...
随机推荐
- http协议(十一)http与https
一.http的缺点 之前有介绍过http协议相关的一些知识,http是相当优秀和方便的,但它也有缺点,主要不足表现在如下几个方面: △ 通信使用明文(不加密),内容可能会被窃听 △ 不验证通信方的身份 ...
- 2DToolkit官方文档中文版打地鼠教程(二):设置摄像机
这是2DToolkit官方文档中 Whack a Mole 打地鼠教程的译文,为了减少文中过多重复操作的翻译,以及一些无必要的句子,这里我假设你有Unity的基础知识(例如了解如何新建Sprite等) ...
- 一键部署mono 免费空间支持ASP.NET MVC 再也不担心伙食费换空间了
一直以来 部署mono 都是很头疼的事情 因为是我在是不熟悉非win环境,今天偶然发现这个项目,挺好的,分享下 https://github.com/wshearn/openshift-communi ...
- [译] 在Web API 2 中实现带JSON的Patch请求
原文链接:The Patch Verb in Web API 2 with JSON 我想在.NET4.6 Web API 2 项目中使用Patch更新一个大对象中的某个字断,这才意识到我以前都没有用 ...
- some OpenGL constants
some OpenGL constants This is from (https://github.com/peterderivaz/pyopengles/blob/master/gl2.py) G ...
- ILMerge合并多个DLL
序言 如果你的项目要提供多个dll给别人用,那么不妨让你的dll合并为一个,让别人看起来简洁,引用起来不会过于繁琐. 本篇比较少,但也算是比较实用吧. 下载微软的辅助工具ILMerge Imerge下 ...
- ASP.NET Core中的依赖注入(4): 构造函数的选择与服务生命周期管理
ServiceProvider最终提供的服务实例都是根据对应的ServiceDescriptor创建的,对于一个具体的ServiceDescriptor对象来说,如果它的ImplementationI ...
- 填坑系列:通过ESXi来配置IPMI
近日西安的天气很不错,可是看到从其他地方迁移来的主机在新环境下无法远程调试怪郁闷的,这就需要填坑,要不就会给后来者挖更大的坑. 今天遇到的坑是在IPMI的网络设置里面启用了VLAN标签之后,在新环境下 ...
- Hibernate(5)—— 联合主键 、一对一关联关系映射(xml和注解) 和 领域驱动设计
俗话说,自己写的代码,6个月后也是别人的代码……复习!复习!复习!涉及的知识点总结如下: One to One 映射关系 一对一单向外键(XML/Annotation) 一对一双向外键关联(XML/A ...
- 解决iframe作为子窗口,刷新后iframe页面跳转到其它页面的问题
转载请在页首注明作者与出处 http://www.cnblogs.com/zhuxiaojie/p/5990262.html 前言: 在开发网站时,尤其是管理后台,我们经常会使用iframe作为内容窗 ...