Si te está ocurriendo que los archivos .svc se descargan, o recibes un error HTTP Error 404.3, sigue estos pasos:
- Activa "HTTP Activation" ejecutando este comando en tu servidor usando PowerShell.
Enable-WindowsOptionalFeature -Online -FeatureName WCF-HTTP-Activation45
- Luego edita el archivo web.config del sitio donde estés trabajando y agrega las siguientes líneas entre los apartados <system.webServer> y </system.webServer>.
<handlers>
<add name="svc-integrated" path="*.svc" verb="*" type="System.ServiceModel.Activation.HttpHandler" resourceType="File" preCondition="integratedMode" />
</handlers>
Si luego de guardar e intentar, arroja el error This collection already contains an address with scheme http... , vuelve a editar y agregar antes de </configuration>.
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" ></serviceHostingEnvironment>
</system.serviceModel>
Comentarios
0 comentarios
Inicie sesión para dejar un comentario.