Search This Blog

Thursday, June 30, 2016

SSL Checker

use below link check SSL of a web site
https://www.sslshopper.com/ssl-checker.html

Monday, June 13, 2016

How to enable PUT and DELETE http methods in Web API?

Add below setting in web.config inside <system.webServer> tag to enable PUT and DELETE HTTP methods in web api.


<modules runAllManagedModulesForAllRequests="true">
          <remove name="WebDAVModule"/>
</modules>