Создан новый каталог XYZ в IIS 7.0. Скопировал в каталог файлы web.config, Service.cs и Service.svc. Теперь при просмотре http://www.mydomain.com/XYZ/Service.svc я получаю '500 внутренняя ошибка сервера'.
Вот файл web.cofig.
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
Я думаю, что может быть какая-то проблема с файлом конфигурации, но служба работает нормально на локальной машине.