HTTP 102 Processing is a WebDAV status code indicating that the server has received and is processing the request, but no response is available yet. This prevents the client from timing out while the server works on a long-running operation.
102 ProcessingGET /download/archive.zip HTTP/1.1
Host: www.example.com
User-Agent: Mozilla/5.0
Accept: text/htmlHTTP/1.1 102 Processing
<server is preparing the large file — final response will follow>102 Processing is informational — the server will send a final response when the operation completes.
If the client disconnects prematurely, increase the request timeout to accommodate long operations.
If the operation never completes, check server logs for errors or resource exhaustion.
A COPY, MOVE, or PROPFIND operation on a large collection of resources takes time to complete.
The server is performing a complex operation that requires extended processing time.
| Specification | Section |
|---|---|
| HTTP Extensions for Distributed Authoring -- WEBDAV | RFC 2518 §10.1 |
This reference was compiled from official RFCs, protocol specifications, and hands-on troubleshooting experience. AI tools were used primarily for formatting and organizing the content on the page.