|
|
-
|
|
In this tutorial we will see how to upload and download a file to Azure Blob storage. Azure blob storage is a service which can be used to save any unstructured information in binary content and serve on HTTP/HTTPS. Blob storage is especially helpful for c...
|
|
-
|
|
Most of us already knew the traditional routing concepts in Web API which we configure in WebApiConfig file. This approach solves most of the basic routing problems, but it limits the granular control and flexibility over custom routes. Attribute based rou...
|
|
-
|
|
Transparent Data Encryption(TDE) is used in SQL Server to protect data by encrypting physical files of the database.In TDE only files (ldf, mdf and bak) will be encrypted, but not the data. In this TDE, database will be encrypted using a Database Encryptio...
|
|
-
|
|
Before looking at the code, Read about – What is JumpStart?
We use Unity IoC container to achieve dependency injection for Web API. Create a ASP.Net MVC4 Project and its associated Class Library as shown in this tutorial – http://www.intstrings.com/r...
|
|
-
|
|
Dependency Injection and Inversion of Control (IoC) are one of the key players in todays web architectures. DI improves code reusability and guarantees loosely coupled systems. Having a DI onboard will help in both code maintenance perspective and applicat...
|
|
-
|
|
In this tutorial we are going to see how we can authenticate users who want to use our services against Windows Azure Active Directory (WAAD) through Access Control Services (ACS). This tutorial is going to narrate a step by step process, I personally sugg...
|
|
-
|
|
FileTable is a new concept in SQL Server 2012, using which you can store files and documents in special tables in SQL Server called FileTables, but access them from Windows applications as if they were stored in the file system, without making any changes ...
|
|
-
|
|
Before looking at the code, Read about – What is JumpStart?
In ASP.Net 4.5, we can defer (lazy) validation of form fields by setting requestValidationMode attribute in httpRuntime section of web.Config file. By default, all the data coming through in reque...
|
|
-
|
|
In this short tutorial, we are going to see how to restrict different requests for different media types in Web API. In reality, a generic Web API needs to support different Content-types to provide interoperability for different platforms. By default, ASP...
|
|
-
|
|
Media formatters in ASP.Net Web API is useful to define our own custom content-type with which we can present data in a specific format. By default Web API support XML, JSON and form-urlencoded data formatters. But with our own media formatter we can have ...
|
|