Showing posts with label http. Show all posts
Showing posts with label http. Show all posts

Wednesday, August 3, 2016

HTTP Error 401.3 - Unauthorized

on local - make sure IUSR has rights to folder

Sunday, February 1, 2015

CORS in asp.net

<httpProtocol>
        <customHeaders>
            <add name="Access-Control-Allow-Origin" value="*" />
            <add name="Access-Control-Allow-Methods" value="GET,POST,OPTIONS" />
            <add name="Access-Control-Allow-Headers" value="Content-Type, soapaction" />
        </customHeaders>
    </httpProtocol>

Sunday, January 5, 2014

Wednesday, November 6, 2013

HTTP 304 - visibility

You will only see on the browsers network traffic- not Fiddler

Monday, November 4, 2013

force jquery not to use cache

$.ajax({url: "url", success: Callback, cache: false});


and avoid http 304!