0

I'm running a ASP.NET MCV 4 project in VS2012 on a windows 7 virtual machine using VMWare. I want to be able to access the site from my mac.

I've done all the steps stated in this question. Restarted IIS, turned off windows firewall, changed the application config file and granted remote access to the ACL and I still get a 503 error in my mac.

Any steps I could have missed?

application config file is the following:

        <site name="prototype" id="2">
            <application path="/" applicationPool="Clr4IntegratedAppPool">
                <virtualDirectory path="/" physicalPath="C:\Users\Igor Popov\Desktop\myapp\prototype" />
            </application>
            <bindings>
                <binding protocol="http" bindingInformation=":50438:192.168.0.9" />
            </bindings>
        </site>
Community
  • 1
  • 1
ip.
  • 3,306
  • 6
  • 32
  • 42

1 Answers1

0

1.Editing applicationhost.config file, your site bindings should look like below;

<binding protocol="http" bindingInformation="*:50438:localhost" />

2.Run your VS as administrator.

3.Visite the site with "localhost:50438" in your mac.

Meryl
  • 1