Quick start 2: RESTful server application, part 2
This quick start provides step-by-step instruction for adding functionality to the RESTful Web service server application created by the previous quick start.
It is assumed you have followed the Quick start 1: RESTful server application quick start to create the Web service.
In this quick start we use the RESTful high-level framework to code three functions in our service module that respond
to requests from these URIs:
- Create a customer
POST http://localhost:8090/MyService/customers
- Update a customer with the specified
id
PUT http://localhost:8090/MyService/customers/id
- Delete a customer with the specified
id
DELETE http://localhost:8090/MyService/customers/id
To test this quick start, you will create a client application by following the instructions in Quick start 3: RESTful client application.