SiteError.comYour friendly guide to HTTP status codes
Status CodesBlog
  1. Home
  2. 1xx Informational
  3. 102 Processing

102 Processing

⏳
102
Processing

Example HTTP Response

HTTP Response
HTTP/1.1 102 Processing
Common Causes
  • WebDAV request taking a long time
  • Complex server-side processing
  • Preventing client timeout during long operations
Technical Details

What does this mean?

Hold tight! The server is cooking something up in the kitchen. Your order will be ready soon!

Technical Definition

The server has received and is processing the request, but no response is available yet.

RFC Says

"The 102 (Processing) status code is an interim response used to inform the client that the server has accepted the complete request, but has not yet completed it."

Plain English:

The server is working on your request but it's taking a while. This prevents your client from timing out while waiting. Used primarily in WebDAV for long-running operations.

View RFC Documentation
Code Snippets

Ready-to-use code for returning this HTTP status in your application:

Node.js
// Express.js
app.get('/example', (req, res) => {
  res.status(102).json({
    error: 'Processing',
    message: 'Your error message here'
  });
});

// Native HTTP
const http = require('http');

http.createServer((req, res) => {
  res.writeHead(102, { 'Content-Type': 'application/json' });
  res.end(JSON.stringify({
    error: 'Processing',
    message: 'Your error message here'
  }));
}).listen(3000);

102 Processing FAQ

What causes a 102 Processing error?

WebDAV request taking a long time. Complex server-side processing. Preventing client timeout during long operations.

101 Switching Protocols103 Early Hints

Popular Status Codes

  • 200 OK
  • 301 Moved Permanently
  • 302 Found
  • 400 Bad Request
  • 401 Unauthorized
  • 403 Forbidden
  • 404 Not Found
  • 500 Internal Server Error
  • 502 Bad Gateway
  • 503 Service Unavailable

Compare Codes

  • 401 vs 403
  • 301 vs 302
  • 404 vs 410
  • 500 vs 502
  • Compare any codes →

Categories

  • Informational
  • Success
  • Redirection
  • Client Error
  • Server Error
  • NGINX
  • Cloudflare
  • AWS ELB
  • Microsoft IIS

Tools

  • Cheat Sheet
  • Status Code Quiz
  • URL Checker
  • API Playground
  • Blog

© 2026 SiteError.com. All rights reserved.