मुख्य सामग्रीवर वगळा

REST WEB API

What is REST

Representational state transfer

it is the architectural style of building Decoupled application

What is REpresentational state transfer

transfer of the state of representation(json or xml) of the resource



One important thing in rest is rest is all about using nouns for ex
api/product/9 is nous
in soap it is getproducts() is full of actions


4 type of request in http protocol can have 4 verbs


GET
Post
Put
Delete


in short rest is architecture style
soap is protocal

when anyone tells about web api it is rest
and web services  it is soap api

Rest Constraints

टिप्पण्या

या ब्लॉगवरील लोकप्रिय पोस्ट

How To Customize Password Policy in ASP.Net Identity   Nimit Joshi   Jan 17  2014   Article 3 9 132.8k facebook twitter linkedIn google Plus Reddit Expand Download Free Office API Introduction Microsoft has released a new version of ASP.NET Identity, 2.0.0-alpha 1. You can refer to  ASP.NET Identity Preview  to get the idea of this release. In that context, we are here today to create a MVC application using ASP.NET Identity to customize the password to provide better security to the application. You'll learn here to modify the minimum length of the password and to make the entering of numeric and special characters in the password mandatory and disallow recently used passwords. By default the ASP.NET Identity requires that the minimum length of the password is 6 characters and here we change it to 8. We'll work on the Visual Studio 2013 version and you must update all the assemblies rela...