Ответ 1
Это может быть проблемой с компилятором ASP.NET при наличии .SVC в приложении ASP.NET. Вы можете избежать проблемы, отключив компиляцию пакета, то есть добавьте следующее в Web.Config под элементом <system.web>
,
<compilation batch="false">
Пожалуйста, ознакомьтесь с инструкциями по воспроизведению проблемы,
a. Create a ASP.NET website application and add WCF Service (in this example EPOCS002.svc)
b. Set the "repro-website" directory as the root of a new site (I set it up on IIS 7.5 in classic
pipeline, 32-bit worker process, .NET 2.0 SP2/3.5SP1, with anonymous authentication enabled).
c. Recycle the application pool for the site.
d. Browse default.aspx
e. Browse EPOCS002.svc
f. Edit default.aspx in some way (add a space somewhere) and save it.
g. Browse again to default.aspx
h. Recycle the application pool for the site.
I. Browse again to default.aspx
J. Browse again to EPOCS002.svc
P.S. Microsoft изучает причину проблемы в данный момент, и я обновляю сообщение, когда у меня есть информация.
НТН, Amit