I am running a console application against a sharepoint 2010 site with Kerberos authentication & the clientcontext object.
Fiddler shows that I connect to the /_vti_bin/sites.asmx ( an ASP web service) with a 401 then a 200. It then redirects me to
/vti_bin/client.svc/ProcessQuery ( wcf web service) where I get the 401 , followed by a 500 System.ServiceModel.ServiceActivationException.
When I put the /_vti_bin/sites.asmx url in the browser, I get a list of methods for the service.
When I put /vti_bin/client.svc in the browser. I get the following error
Security settings for this service require Windows Authentication but it is not enabled for the IIS application that hosts this service.
No change when I reran the browser call to client.svc.
Do I need to bounce the server or sharepoint or run something else for this be actually deployed to the sharepoint service ??
Do I need to enable something else to allow wcf services to run ?
Any other ideas ?
Thanks
Richard