A family of Microsoft on-premises document management and storage systems.
Hi Cemil Chamma
From the error logs you sent, I can see that Logon Method: Federated Logon is the primary cause of this concern.
As far as I know, SharePoint Designer communicates with the farm via _vti_bin/webpartpages.asmx using classic/Windows (NTLM/Kerberos) authentication internally, so when the Web Application's authentication provider is Claims/Federated only, the _vti_bin The virtual directory may not negotiate auth correctly for SPD's service calls, causing the request to fail at the handler level, even though the Windows error code is 0x00000000 .
That said, from my perspective, you can try 2 options below to see if it helps.
However, first of all, before making changes, pull the ULS log from the server at the time of the failure:
Merge-SPLogFile -Path "C:\Logs\SPD_error.log" -Overwrite -StartTime (Get-Date).AddMinutes(-10)
Filter for webpartpages or ScriptHandlerFactory entries. The ULS correlation ID will tell you exactly where it breaks internally
Option 1: Enable Windows authentication on the web application
In Central Administration > Application Management > Manage Web Applications:
- Select the affected Web Application > Authentication Providers
- Click the Zone (usually Default)
- Under Claims Authentication Types, ensure Windows Authentication > NTLM is checked in addition to your federated provider
- Save and do an IISReset
SharePoint Designer requires a Windows-negotiable auth channel to call _vti_bin services. Federated-only zones block this.
Option 2: Check _vti_bin IIS Authentication Settings
The _vti_bin virtual directory can get out of sync with the parent Web Application's IIS site:
- Open IIS Manager on the WFE
- Expand the site > find
_vti_bin - Open Authentication
- Ensure Windows Authentication is Enabled
- Ensure Anonymous Authentication is Disabled (or matches your site config)
If Windows Authentication is missing or disabled here specifically, SPD's ASMX calls will fail with exactly this symptom even if the parent site looks fine.
In case the issue still persists, kindly let me know in the comment section for further support
Best regards
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.