← All Status Codes
102
Processing
ℹ️ Informational
Info Risk
📖 What Is HTTP 102?
The server has received and is processing the request but no response is available yet. Used in WebDAV to prevent client timeouts on long operations.
🛡️ Security Implications
Can indicate long-running server operations. Monitor for resource exhaustion if many 102 responses are observed.
🔍 Common Causes
WebDAV operations (COPY, MOVE, DELETE) on large collections. Server needs more time to complete the operation.
🔧 How to Fix
Set appropriate timeouts. Consider async processing with callbacks for long operations.
🖥️ How to Check
curl -I -o /dev/null -w "%{http_code}" https://example.com