The Coffee Break Statement: Running SOAP hello world endpoint using JAX-WS only (jar)

Robert Diers
NEW IT Engineering
Published in
Aug 2, 2021

Did you ever need an SOAP endpoint for testing purpose?

Have you searched for a DockerHub container giving you a SOAP hello world endpoint?

I needed it to test a gateway and found nothing useful. So I decided to create it on my own and to run it as a simple jar — so it could be placed in a container if required.

Here’s the project including Hello World endpoint and curl statement to test the endpoint:

You do not need an external application server or Spring Boot — everything is solved with native JAX-WS started with main class…

--

--