Now that you have your Web service provider running with all of its resources active, you are ready to interact with the Web service. You can do this using any JSON requester tool.
http://localhost:5482/cics/services/json/film
{"film-details": [{ "title": "Jaws", "year": "1975", "director": "Steven Spielberg", "format": "VHS" }]}
The response should be a status code of 200, and the body should contain the string /cics/services/json/films/Jaws. This is the string placed into the DFHRESPONSE container by the application.
http://localhost:5482/cics/services/json/film/jaws
The response should be a JSON message containing the film details placed into the DFHWS-DATA container by the application.
This concludes the tutorial.