Since remoting needs to be migrated to Windows Server 8, iis7 is used as the host, but after the configuration, the client access is started and the Error 404 is always displayed, and several posts are searched, all are solutions on the Vista operating system:
See http://support.microsoft.com/kb/927672/en-us
Find the applicationhost. config file under % WINDIR % \ system32 \ inetsrv \ config, and find that overridemodedefault is already allow
<SectionName= "Requestfiltering"Overridemodedefault= "Allow" />
Find the folder % Windi % \ System32 \ COM, which cannot be foundThe Application Server Directory supporting soap cannot be found.Web. config file,
After thinking about it, add the following to Web. config:Code: The effect should be the same.
1 < System. Webserver >
2 < Security >
3 < Requestfiltering Allowdoubleescaping = "True" />
4 </ Security >
5 </ System. Webserver >
Finally, the test is passed.