HTTP 424 Failed Dependency vs 508 Loop Detected
HTTP 424 (Failed Dependency) is a 4xx Client Error response, while 508 (Loop Detected) is a 5xx Server Error response. 424 indicates that the request failed because it depended on another request that failed (WebDAV). In contrast, 508 means that the server detected an infinite loop while processing the request (WebDAV).
Description
The request failed because it depended on another request that failed (WebDAV).
When You See It
In batch WebDAV operations when a prerequisite action fails.
How to Fix
Fix the failed dependency first, then retry the operation.
Description
The server detected an infinite loop while processing the request (WebDAV).
When You See It
When WebDAV encounters circular references in bindings.
How to Fix
Fix the circular reference in the WebDAV configuration.
Key Differences
424 is a 4xx Client Error response, while 508 is a 5xx Server Error response.
HTTP 424: The request failed because it depended on another request that failed (WebDAV).
HTTP 508: The server detected an infinite loop while processing the request (WebDAV).
You encounter 424 when in batch WebDAV operations when a prerequisite action fails.
You encounter 508 when when WebDAV encounters circular references in bindings.
When to Use Which
For 424 (Failed Dependency): Fix the failed dependency first, then retry the operation. For 508 (Loop Detected): Fix the circular reference in the WebDAV configuration.