Keploy as a SOAP testing framework
Keploy records the SOAP over HTTP exchanges your service has with an upstream service, then replays those envelopes in tests. Your SOAP client runs unchanged and parses a real response on every run, but CI needs no upstream endpoint and no stub to maintain.
keploy record -c "<your app start command>"What Keploy gives a SOAP team
Every SOAP call your service makes
Keploy records SOAP request and response envelopes as they cross HTTP, so a service that calls a SOAP endpoint can be tested with no access to that endpoint.
- Envelopes captured verbatim
- Namespaces preserved
- SOAP faults captured
- No upstream access needed
Why SOAP integration tests slow teams down
The friction is rarely the assertions. It is everything around them — spinning up dependencies, keeping mocks honest, and repairing tests after every refactor.
Testing SOAP: by hand, with WireMock, or with Keploy
WireMock gives a test a real SOAP endpoint at the cost of running and configuring one. A hand-stubbed client is cheap but never parses an envelope. Keploy replays the recorded exchange with nothing running.
Select any row for the full comparison, with code.
What you write for SOAP vs what Keploy records
All three produce the same assertion. Only the third still passes after the next refactor without anyone editing it.
A hand-written stub of the SOAP client. No envelope is ever parsed.
WireMock serves a real SOAP endpoint. Fidelity is genuine; the job pays for it in setup.
Recorded from one real request. Nothing here was typed by hand.
Times are estimates for authoring one endpoint’s coverage from scratch, not measurements.
SOAP testing tools, compared
The options a team on service and platform integrations actually reaches for, and where each one genuinely wins. Select a row for the full comparison.
Assessments reflect each tool’s documented behaviour, not benchmark measurements.
Record your SOAP app once, replay it forever
Keploy sits below your SOAP process at the network layer. It watches the calls your app already makes, then serves them back on replay so tests run with no dependencies attached.
Keploy records a GET call to /api/v1/orders/{id} on a SOAP service and captures the dependency calls it makes.
What Keploy mocks for SOAP, with zero config
5 of the 6 dependencies a typical SOAP service talks to are stubbed from the recording itself — no mock classes, no fixture files, no containers in CI.
- Outbound HTTPAuto-mocked
Outbound HTTP
Every outbound HTTP call
- Partial
gRPCView page
HTTP/2 frames from a gRPC client
- Auto-mocked
PostgreSQLView page
Postgres protocol beneath the driver
- Auto-mocked
RedisView page
RESP beneath the cache client
- Auto-mocked
MongoDBView page
Wire protocol beneath the Mongo driver
- Auto-mocked
Apache KafkaView page
Kafka protocol beneath the client
Your first SOAP test suite in under five minutes
Every command below runs against your existing SOAP service. Nothing in your source tree changes.
1Install the Keploy CLI
A single binary. It needs a Linux kernel with eBPF support, or Docker on macOS and Windows — and it adds nothing to your project's dependencies.
curl -sSL https://keploy.io/install.sh | bash2Record your service
Pass the command you already use to start the app. Keploy runs it and watches every socket it opens.
keploy record -c "<your app start command>"3Exercise the paths you care about
Use curl, your frontend, or an existing smoke script. Every request becomes a test case with its SOAP calls captured alongside it.
curl -X POST localhost:8080/orders/o-1/confirmcurl localhost:8080/orders/o-14Replay in CI
Replay serves the recorded dependency responses, so the job needs no service containers and no Docker daemon.
keploy test -c "<your app start command>" --delay 10
Ready to try it on your own SOAP service?
Works with the rest of your SOAP stack
Keploy records at the network layer, so framework and driver choices inside your SOAP app do not change how it captures traffic.
- Outbound HTTP
Outbound HTTP
The traffic being captured
Kubernetes
Where these services usually run
Docker
The other common runtime
gRPC
A common protocol alongside
Node.js
A common client runtime
Go
Another common client runtime
Testing the rest of your stack
- Cloud & Infra
Keploy as a Kubernetes testing framework
Record traffic from a running pod and replay it as tests in CI, without a cluster, a namespace, or a service mesh.
Read the guide - Cloud & Infra
Keploy as a Docker testing framework
Record traffic inside a container once and replay it in CI without Docker Compose, a test stack, or a daemon in the runner.
Read the guide - Cloud & Infra
Keploy as a gRPC testing framework
Record real gRPC exchanges over HTTP/2 and replay them as tests — no in-process stub server, no hand-written mock service implementation.
Read the guide - Cloud & Infra
Keploy as a GraphQL testing framework
Record real GraphQL operations once and replay resolver-level coverage without a mocked schema or hand-written resolver stubs.
Read the guide - Cloud & Infra
Keploy as a AWS Lambda testing framework
Record a Lambda handler's real invocation and downstream calls once, then replay them as tests without SAM local or a deploy.
Read the guide - Cloud & Infra
Keploy as a Amazon S3 testing framework
Record real S3 uploads, downloads, and presigned URL calls once and replay them in tests without a bucket or credentials.
Read the guide
Join our GlobalCommunity
Connect with developers worldwide. Follow updates, ask questions, share feedback, and ship faster with other Keploy builders.
“Best report of integration and API tests I've seen — which we don't get from RestAssured.”
G2“Future of microservices testing. I don't write tests now!”
Mahfooz A. · G2 · 5/5“An amazing product that simplifies the automation.”
Gartner · 4.0