From 8965cd190a54ab20916e6d5b9d2b8f316e7c0d38 Mon Sep 17 00:00:00 2001 From: Yohan Boujon Date: Tue, 10 Dec 2024 16:50:07 +0100 Subject: [PATCH] Added some tutorials --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7067628..9a18a1c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,24 @@ # service-architecture Course Exercice : Application to help others -``` +```bash mvn compile mvn spring-boot:run ``` + +## Check `SOAP` Requests + +Please install the following application for ease of use SoapUI: +```bash +flatpak install flathub org.soapui.SoapUI +``` +Then in the application create a new project with the endpoint of your choice, one might be `http://localhost:8080/ws/countries.wsdl`. Then modify the given request with the corresponding Country if you use the simple example given by SpringBoot. + +## Check `REST` Requests + +Use this time the HTTPie application, it can be either in fully CLI or with a great UI, you can install it with flathub using this command: +```bash +flatpak install flathub io.httpie.Httpie +``` +Just run the command `http POST localhost:8080 hello=world` to test the REST api. \ No newline at end of file