Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <h2>Edit: This actually doesn't appear to solve my issue.</h2> <hr> <p>It turns out the issue was specific to Chrome. I was getting this issue when debugging and had to kill the IIS express process for it to resolve itself. However, I found a more perminate solution by doing the following.</p> <p>In %userprofile%\documents\IISExpress\config\applicationhost.config insure that the overrideModeDefault is set to allowed for windowsAuthentication and anonymousAuthentication like this:</p> <pre><code>&lt;section name="anonymousAuthentication" overrideModeDefault="Allow" /&gt; &lt;section name="windowsAuthentication" overrideModeDefault="Allow" /&gt; </code></pre> <p>Your authentication section should also look like this. Note the only provider is NTLM.</p> <pre><code>&lt;authentication&gt; &lt;anonymousAuthentication enabled="false" userName="" /&gt; &lt;basicAuthentication enabled="false" /&gt; &lt;clientCertificateMappingAuthentication enabled="false" /&gt; &lt;digestAuthentication enabled="false" /&gt; &lt;iisClientCertificateMappingAuthentication enabled="false"&gt; &lt;/iisClientCertificateMappingAuthentication&gt; &lt;windowsAuthentication enabled="true"&gt; &lt;providers&gt; &lt;add value="NTLM" /&gt; &lt;/providers&gt; &lt;/windowsAuthentication&gt; &lt;/authentication&gt; </code></pre> <p>This section should also be in the web.config.</p> <pre><code>&lt;authentication&gt; &lt;windowsAuthentication enabled="true"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add value="NTLM" /&gt; &lt;/providers&gt; &lt;/windowsAuthentication&gt; &lt;/authentication&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload