Hi
HTTP Error 404.17 - Not Found
The requested content appears to be script and will not be served by the static file handler.
I migrated my web service from IIS 6.0 to IIS 7.0 successfully with following steps.
1. I check for dependencies for my web service. I found that web service is dependant on “MyAppPool “
I migrated application using manifest. In manifest I write following things.
<MyApplication><metaKey path="lm/w3svc/apppools/ MyAppPool" /><metaKey path="lm/w3svc/1/Root/ MyApplication " />
</ MyApplication >
2. I use following command to migrate web service.
msdeploy -verb:migrate -source:manifest=D:\ MyApplication.xml -dest:auto,computerName=IIS7.0ServerName
I successfully migrate web service with above steps.
3. When I browse web service I get Http error 404.17 as mentioned above.
Application pool for “MyApplication” is “MyAppPool” after migration. When I change it manually to “DefaultAppPool” everything works fine. But I don’t want to change application pool.
I also tried with changing “Enable 32-Bit Applications” in advanced settings for “MyAppPool” to True. But no luck.
Please help me out, Let me know work around or please guide me if I am doing anything wrong.
Thanks