> I am trying to write my first WCF Service. I am using VS2008 beta 2 on a
> Vista Business machine
[quoted text clipped - 39 lines]
> thanks for your help
> m
Some things to check:
IIS (sometimes doesn't configure itself correctly):
In the "Configuration..." option (Application Configuration) [for me
on the Virtual Directory tab], ensure that .svc is linked to
aspnet_isapi.dll, and does not have the "verify that file exists"
option checked.
On the ASP.NET tab, ensure that ASP.NET 2.0.blah is selected.
global web.config (doesn't get automatically updated if you have
customised the file prior to upgrade):
Ensure that there is a .svc entry in the buildProviders section,
linking to System.ServiceModel
Ensure that there is a .svc entry in the httpHandlers section, linking
to System.ServiceModel
Ensure that there is a ServiceModel entry in the httpModules
Ensure that System.IdentityModel and System.ServiceModel are in the
compilation assemblies
(for the last 3, the changes are a little tricky to describe - post
back if you need the gory details...)
Marc
Marc Gravell - 13 Nov 2007 15:43 GMT
Ah darnit, wrong IIS version - you might want to disregard, sorry...
Renaud - 13 Nov 2007 16:18 GMT
I've found the solution here
http://blogs.msdn.com/davidwaddleton/archive/2007/11/02/wcf-and-404-3-errors.aspx
> Ah darnit, wrong IIS version - you might want to disregard, sorry...