- Install python3
- Install the .NET SDK 6.0
webui
- contains the web page and web server scriptswhitespace-removal-service
- responsible for receiving strings with whitespace and returning a response with whitespace removedwhitespace-counter-service
- responsible for receiving strings with whitespace and returning a response with the number of whitespace characters in the string
$ cd webui
$ python server.py
$ cd WhitespaceApplication/WhitespaceRemovalService
$ dotnet run
$ cd WhitespaceApplication/WhitespaceCounterService
$ dotnet run
httprepl http://localhost:5000
curl http://localhost:5000/WhitespaceRemovalService/{some%20String} -v