1xx InformationalDeprecatedRFC 2518 (WebDAV)

102Processing

Server is processing the request but no response is available yet.

What it means

A WebDAV status code indicating the server has received and is processing the request, but no response is available yet. This prevents the client from timing out. Deprecated in modern usage.

When to use it

  • WebDAV requests that take a long time to process

Code Examples

WebDAV long-running operation
javascript
// Rare — used in WebDAV contexts
res.status(102); // Sending processing indicator
// ... long operation ...
res.status(200).json({ done: true });

Quick Facts

Code102
CategoryInformational
SpecRFC 2518 (WebDAV)
CommonNo
StatusDeprecated

Related Codes

← Back to all status codes