This was resolved by setting inheritInChildApplications=”false” on the web.config file of the Asp.net MVC Application.
<location path="." inheritInChildApplications="false">
<system.web></system.web>
</location>
<location path="." inheritInChildApplications="false">
<system.webServer></system.webServer>
</location>
CLICK HERE to find out more related problems solutions.