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