6

Whenever I try to save I get this error (via javascript console)

POST https://domain.local/_vti_bin/client.svc/ProcessQuery 404 (Not Found)

Any ideas?

Paul Riker
  • 785
  • 2
  • 10
  • 30

1 Answers1

0

For me the problem was twofold:

  1. My server was missing the HTTP Activation in WCF Services in the .NET Framework 4.5 Feature.

Go to Server Manager => Manage => Add Roles and Features => Features and make sure it's checked.

  1. I had to add the Negotiate-provider for Windows Authentication in IIS.

Open IIS, go the the site in question, open Authentication, right click Windows Authentication, click Providers..., add Negotiate from Available Providers. I'm having it below NTLM and that works fine.

Alex
  • 14,104
  • 11
  • 54
  • 77