REST Services in soapUI
All REST testing capabilities of soapUI are based on a logical representation known as REST service. We should not confuse this with the term "service" here since it is not a service implementation but a mapping of the RESTful service that is being invoked. We can add as many REST Services as we can in a soapUI project; each represents a particular RESTful service. The REST service model in soapUI can be represented as shown in the following diagram:
Each REST service consists of a number of resources. As we discussed at the beginning of the chapter, resources represent any named information that is identified as URIs. So, each resource can be addressed through a specific URI. For example, the guests' resource can be accessed through URI path /guests
whereas guest resource is found at the/guest/{guestName}
URI.
A resource may have child resources. The complete URI of the child resource is a concatenation of the parent resource URI with its own.
Resources can have multiple...