上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 157 下一页

2017年6月9日

[转]asp.net权限认证:摘要认证(digest authentication)

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

posted @ 2017-06-09 11:40 freeliver54 阅读(708) 评论(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 阅读(341) 评论(0) 推荐(0)

2017年6月8日

[转]使用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 阅读(461) 评论(0) 推荐(0)

[转]Web APi之认证(Authentication)两种实现方式【二】(十三)

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

posted @ 2017-06-08 11:19 freeliver54 阅读(837) 评论(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 阅读(875) 评论(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 阅读(402) 评论(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 阅读(244) 评论(0) 推荐(0)

2017年6月6日

[转]log4net 发布到生产环境不写日志的解决方法--使用 NLog日志

摘要: 本文转自:http://www.cnblogs.com/weiweictgu/p/5848805.html 1、升级到log4net的最新版 PM下执行 还是无法解决的,使用下面的方法 2、使用Nlog替换之,详见https://github.com/NLog/NLog/wiki/Tutorial 阅读全文

posted @ 2017-06-06 16:23 freeliver54 阅读(565) 评论(0) 推荐(0)

[转]Porting to Oracle with Entity Framework NLog

摘要: 本文转自:http://izzydev.net/.net/oracle/entityframework/2017/02/01/Porting-to-Oracle-with-Entity-Framework.html We had to port our giant-_ish_, Entity Fra 阅读全文

posted @ 2017-06-06 15:10 freeliver54 阅读(675) 评论(0) 推荐(1)

[转]如何配置Log4Net使用Oracle数据库记录日志

摘要: 本文转自:http://www.cnblogs.com/PatrickLiu/p/6012153.html 阅读全文

posted @ 2017-06-06 15:08 freeliver54 阅读(392) 评论(1) 推荐(0)

2017年6月3日

[转]Android Studio SQLite Database Example

摘要: 本文转自:http://instinctcoder.com/android-studio-sqlite-database-example/ BY TAN WOON HOW · PUBLISHED APRIL 9, 2014 · UPDATED JUNE 23, 2016 SQLiteDatabase 阅读全文

posted @ 2017-06-03 22:30 freeliver54 阅读(553) 评论(0) 推荐(0)

2017年6月2日

[转]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 阅读(384) 评论(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 阅读(264) 评论(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 阅读(512) 评论(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 阅读(311) 评论(0) 推荐(0)

2017年6月1日

[转]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 阅读(1730) 评论(1) 推荐(1)

2017年5月31日

[转]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 阅读(505) 评论(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 阅读(381) 评论(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 阅读(452) 评论(0) 推荐(0)

[转]ASP.NET web API 2 OData enhancements

摘要: 本文转自:https://www.pluralsight.com/blog/tutorials/asp-net-web-api-2-odata-enhancements Along with the release of Visual Studio 2013 came a new release o 阅读全文

posted @ 2017-05-31 15:48 freeliver54 阅读(228) 评论(0) 推荐(0)

上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 157 下一页

导航