IE 9, Cassini and the dreaded dns error (or page can’t load)

So I’ve been hearing a lot of folks (myself included) having issue with debugging there web application with VS 2010, Cassini (the VS web server) and IE9.  It looks like this

image

Well I found and easy solution, image that Winking smile.

Edit your hosts file at location c:\windows\system32\drivers\etc\hosts and make sure the localhost 127.0.0.1 line is uncommented and the localhost ::1 is commented or deleted.

You can ping locahost host from a command line and make sure you see

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

After that you should be in business.  The problems seem to come from the fact that IE9 starts to fast (Image that!!) for cassini and with localhost not setup properly (in Windows 7 by default it seems to be commented out) it causes this issue.

Let me know if this solves you problems (it worked on different machines I tried it on).

Cheers,

ET

Technorati Tags: IE9,VS2010,Debugging

This article is part of the GWB Archives. Original Author: Etienne Tremblay

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.