From c4199c15da736d3be0517c65f1ccfd4260016cb0 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Thu, 8 Apr 2021 20:55:32 +0100 Subject: [PATCH] added readme --- README.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0db5bb6 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +# SOAPMOCK + +This is a demo springboot project, that shows how you can emulate the behavior of a soap web service as a black box. I have written it to be compatible with **Java 1.8**. So, it should work well with older systems. + +Build: +``` +mvn clean install +``` +Run: +``` +mvn spring-boot:run +``` + +The server will start on `http://localhost:8080` + +Configure your client (Postman, Insomnia, or whatever) to send this body in a `POST` to url `/call1`: + +``` + + + + + + MicroSoft + + + +``` + +You should get this in response: + +``` + + + + + Here is the quotation + + + +``` \ No newline at end of file