随笔分类 -  WebServices/WCF/WebAPI/OData

[转]C# 实现Jwt bearer Authentication
摘要:本文转自:https://www.cnblogs.com/aishangyipiyema/p/9262642.html 什么是JWT JWT(JSON Web Token), 顾名思义就是在Web上以JSON格式传输的Token(RFC 7519)。 该Token被设计为紧凑声明表示格式,特别适用于 阅读全文

posted @ 2019-03-11 17:38 freeliver54 阅读(3002) 评论(0) 推荐(0) 编辑

[转]C#进阶系列——WebApi 接口参数不再困惑:传参详解
摘要:本文转自:http://www.cnblogs.com/landeanfen/p/5337072.html#_label1_2 阅读目录 一、get请求 1、基础类型参数 2、实体作为参数 3、数组作为参数 4、“怪异”的get请求 二、post请求 1、基础类型参数 2、实体作为参数 3、数组作为 阅读全文

posted @ 2017-11-06 15:44 freeliver54 阅读(233) 评论(1) 推荐(0) 编辑

[转]玩转Windows服务系列——命令行管理Windows服务
摘要:本文转自:http://www.cnblogs.com/hbccdf/p/managewindowsservicewithcmd.html 说到Windows服务的管理就不得不说通过命令行的方式管理Windows服务,因为无论是系统管理员,还是通过编程的方式调用cmd命令,命令行都是非常方便以及强大 阅读全文

posted @ 2017-06-20 10:00 freeliver54 阅读(1217) 评论(0) 推荐(0) 编辑

[转]ASP.NET MVC学习系列(二)-WebAPI请求 传参
摘要:本文转自:http://www.cnblogs.com/babycool/p/3922738.html ASP.NET MVC学习系列(二)-WebAPI请求 继续接着上文 ASP.NET MVC学习系列(一)-WebAPI初探 来看看对于一般前台页面发起的get和post请求,我们在Web API 阅读全文

posted @ 2017-06-19 16:45 freeliver54 阅读(5196) 评论(1) 推荐(1) 编辑

[转]C#进阶系列——WebApi 接口返回值不困惑:返回值类型详解
摘要:本文转自:http://www.cnblogs.com/landeanfen/p/5501487.html 阅读目录 一、void无返回值 二、IHttpActionResult 1、Json(T content) 2、Ok()、 Ok(T content) 3、NotFound() 4、其他 5、 阅读全文

posted @ 2017-06-19 10:46 freeliver54 阅读(562) 评论(0) 推荐(0) 编辑

[转]asp.net权限认证:摘要认证(digest authentication)
摘要:本文转自:http://www.cnblogs.com/lanxiaoke/p/6357501.html 摘要认证简单介绍 摘要认证是对基本认证的改进,即是用摘要代替账户密码,从而防止明文传输中账户密码的泄露 之前对摘要认证也不是很熟悉,还得感谢圆中的 parry 贡献的博文:ASP.NET Web 阅读全文

posted @ 2017-06-09 11:40 freeliver54 阅读(695) 评论(0) 推荐(0) 编辑

[转]asp.net权限认证:HTTP基本认证(http basic)
摘要:本文转自:http://www.cnblogs.com/lanxiaoke/p/6353955.html HTTP基本认证示意图 HTTP基本认证,即http basic认证。 客户端向服务端发送一个携带基于用户名/密码的认证凭证的请求。认证凭证的格式为“{UserName}:{Password}” 阅读全文

posted @ 2017-06-09 11:36 freeliver54 阅读(331) 评论(0) 推荐(0) 编辑

[转]使用ASP.NET Web Api构建基于REST风格的服务实战系列教程【八】——Web Api的安全性
摘要:本文转自:http://www.cnblogs.com/fzrain/p/3552423.html 系列导航地址http://www.cnblogs.com/fzrain/p/3490137.html 前言 这一篇文章我们主要来探讨一下Web Api的安全性,到目前为止所有的请求都是走的Http协议 阅读全文

posted @ 2017-06-08 14:37 freeliver54 阅读(452) 评论(0) 推荐(0) 编辑

[转]Web APi之认证(Authentication)两种实现方式【二】(十三)
摘要:本文转自:http://www.cnblogs.com/CreateMyself/p/4857799.html 前言 上一节我们详细讲解了认证及其基本信息,这一节我们通过两种不同方式来实现认证,并且分析如何合理的利用这两种方式,文中涉及到的基础知识,请参看上一篇文中,就不再叙述废话。 序言 对于所谓 阅读全文

posted @ 2017-06-08 11:19 freeliver54 阅读(801) 评论(0) 推荐(0) 编辑

[转]Web APi之认证(Authentication)及授权(Authorization)【一】(十二)
摘要:本文转自:http://www.cnblogs.com/CreateMyself/p/4856133.html 前言 无论是ASP.NET MVC还是Web API框架,在从请求到响应这一过程中对于请求信息的认证以及认证成功过后对于访问页面的授权是极其重要的,用两节来重点来讲述这二者,这一节首先讲述 阅读全文

posted @ 2017-06-08 11:17 freeliver54 阅读(840) 评论(0) 推荐(0) 编辑

[转]OData and Authentication – Part 6 – Custom Basic Authentication
摘要:本文转自:https://blogs.msdn.microsoft.com/astoriateam/2010/07/21/odata-and-authentication-part-6-custom-basic-authentication/ 阅读全文

posted @ 2017-06-08 11:07 freeliver54 阅读(392) 评论(1) 推荐(0) 编辑

[转]OData and Authentication – Part 5 – Custom HttpModules
摘要:本文转自:https://blogs.msdn.microsoft.com/odatateam/2010/07/19/odata-and-authentication-part-5-custom-httpmodules/ In the last post we saw how to add cust 阅读全文

posted @ 2017-06-08 10:59 freeliver54 阅读(236) 评论(0) 推荐(0) 编辑

[转]Support Composite Key in ASP.NET Web API OData
摘要:本文转自:https://code.msdn.microsoft.com/Support-Composite-Key-in-d1d53161 he default EntitySetController doesn't support composite keys. So if you have c 阅读全文

posted @ 2017-06-02 17:56 freeliver54 阅读(376) 评论(3) 推荐(0) 编辑

[转]Web API OData V4 Keys, Composite Keys and Functions Part 11
摘要:本文转自:https://damienbod.com/2014/09/12/web-api-odata-v4-keys-composite-keys-and-functions-part-11/ Web API OData V4 Keys, Composite Keys and Functions 阅读全文

posted @ 2017-06-02 17:43 freeliver54 阅读(253) 评论(0) 推荐(0) 编辑

[转]Composite Keys With WebApi OData
摘要:本文转自:http://chris.eldredge.io/blog/2014/04/24/Composite-Keys/ In our basic configuration we told the model builder that our entity has a composite key 阅读全文

posted @ 2017-06-02 17:17 freeliver54 阅读(504) 评论(0) 推荐(0) 编辑

WCF Data Services 5.0 for OData V3
摘要:https://www.microsoft.com/en-us/download/details.aspx?id=29306 VS 2010 下 安装 WCF Data Services 5.0 enables creation and consumption of data services fo 阅读全文

posted @ 2017-06-02 11:15 freeliver54 阅读(305) 评论(0) 推荐(0) 编辑

[转]OData的初步认识 OData v4 Client Code Generator
摘要:本文转自:http://www.cnblogs.com/1zhk/p/5356053.html What – OData是什么? OData - Open Data Protocol,是一个设计和使用RESTful API的标准。REST本身只是一个构建web服务的思想和理念,其没有规定一个统一的标 阅读全文

posted @ 2017-06-01 14:05 freeliver54 阅读(1704) 评论(1) 推荐(1) 编辑

[转]OData – the best way to REST–实例讲解ASP.NET WebAPI OData (V4) Service & Client
摘要:本文转自:http://www.cnblogs.com/bluedoctor/p/4384659.html 一、概念介绍 1.1,什么是OData? 还是看OData官网的简单说明: An open protocol to allow the creation and consumption of 阅读全文

posted @ 2017-05-31 18:04 freeliver54 阅读(494) 评论(0) 推荐(0) 编辑

[转]Calling an OData Service From a .NET Client (C#)
摘要:本文转自:https://docs.microsoft.com/en-us/aspnet/web-api/overview/odata-support-in-aspnet-web-api/odata-v3/calling-an-odata-service-from-a-net-client by M 阅读全文

posted @ 2017-05-31 17:28 freeliver54 阅读(371) 评论(0) 推荐(0) 编辑

[转]Upgrading to Async with Entity Framework, MVC, OData AsyncEntitySetController, Kendo UI, Glimpse & Generic Unit of Work Repository Framework v2.0
摘要:本文转自:http://www.tuicool.com/articles/BBVr6z Thanks to everyone for allowing us to give back to the .NET community, we released v1.0 of the Generic Uni 阅读全文

posted @ 2017-05-31 15:56 freeliver54 阅读(446) 评论(0) 推荐(0) 编辑

导航