Skip to main content
DevPipe logoDevPipe

HAR & SOAP Viewer

Summarize HAR archives and validate SOAP envelope structure.

Mode

Viewing HAR archives and SOAP envelopes

HTTP Archive (HAR) files capture browser network waterfalls: request timing, status codes, headers, and often response bodies. Summarizing a HAR highlights slow endpoints, duplicate assets, oversized payloads, and failed requests without opening DevTools on every machine.

Export HAR from Chrome, Firefox, or Edge during a reproduction, then inspect it locally. Sort or filter by status family (4xx/5xx), wall-clock duration, and initiator type. That workflow is faster than scrolling a dense waterfall when you are pairing with support on a call.

HAR files are sensitive by default. They routinely include cookies, Authorization headers, and response JSON with account data. Scrub or truncate bodies before attaching a HAR to a ticket. Prefer synthetic sessions when you only need timing evidence.

SOAP envelope validators check namespaces, Body and Header structure, and obvious malformation when integrating legacy enterprise services. Faults often hide inside XML that looks successful at the HTTP layer (HTTP 200 with a SOAP Fault).

Large HARs stress browser memory. Filter to failing entries or a single page navigation before parsing multi-minute recordings. Split captures by user journey when investigating regressions across many screens.

When should you open a HAR viewer? Performance regressions after a release, third-party script bloat, and API timeouts that only reproduce in a real browser. Pair HAR review with server access logs when the client waterfall looks healthy but the origin still returns errors.

Privacy note: DevPipe summarizes HAR and SOAP samples in the browser. Do not upload customer session captures to public HAR viewers. Redact Set-Cookie and bearer tokens before sharing excerpts.

Reference Guide

QA tool - all processing runs locally in your browser. No data is sent to a server.

Operation: har-parse

  • Paste a full HAR export from Chrome DevTools or Playwright.
  • Summarizes up to 20 requests with method, status, and URL.

Paste input, click Run, and copy the result. For two-input tools, fill both fields before running.

Example Input

{"log":{"entries":[{"request":{"method":"GET","url":"https://devpipe.dev"},"response":{"status":200}}]}}

A sample loads automatically when you open this tool. Use Load Sample to reset it.

Related tools