Using the WCF Samples, error 405
It possibly relates to IIS setup (I am not an expert in those areas), so how can I trace that error and find the problem?
thx
It possibly relates to IIS setup (I am not an expert in those areas), so how can I trace that error and find the problem?
thx
This typically occurs if ASP.Net is not installed or the .svc file type is not mapped to the aspnet_isapi.dll. This is most often the result of installing IIS after WCF. You can fix this by running the following two commands:
aspnet_regiis –I –enable from the .NET Framework installation directory
"%WINDIR%\Microsoft.Net\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe" -rCheck out http://msdn2.microsoft.com/en-us/library/ms752252.aspx for details.Cheers,Ed