WINDOWS SHORT CUTS:
ALT + UP ARROW : TO MOVE UPPER FOLDER
Now the basic CRUD operations are mapped to the HTTP protocols in the following manner:
- GET: This maps to the
R(Retrieve)
part of the CRUD operation. This will be used to retrieve the required data (representation of data) from the remote resource.
- POST: This maps to the
U(Update)
part of the CRUD operation. This protocol will update the current representation of the data on the remote server.
- PUT: This maps to the
C(Create)
part of the CRUD operation. This will create a new entry for the current data that is being sent to the server.
- DELETE: This maps to the
D(Delete)
part of the CRUD operation. This will delete the specified data from the remote server.
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<protocolMapping>
<add scheme="http" binding="webHttpBinding"/>
</protocolMapping>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior>
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
Use webHttpBinding (change default http port mapping to webHttpBinding)
<system.serviceModel> <protocolMapping> <add scheme="http" binding="webHttpBinding"/> </protocolMapping> <behaviors> <system.serviceModel>
Specify webHttp End Point Behaviors
<system.serviceModel> ----- </protocolMapping> <behaviors> <endpointBehaviors> <behavior> <webHttp /> </behavior > </endpointBehaviors> <behaviors> ------ <system.serviceModel>