Computer Science Notes

Notes From CS Undergrad Courses FSU

This project is maintained by awa03

Services are reusable components that are independent and are loosely coupled

Service Oriented Architecture

SOAP

Restful Service

  1. Resource Identification: a URI
  2. Resource representation: any format, XML
  3. Resource operation: retrieve, create, delete, or update
Name Definition
Post Create a new resource on the server. The client sends data to the server, and the server creates a new resource based on that data.
Get Read a value of resource and return that to requestor
Put Update a resource on the server. The client sends data to the server, and the server updates the resource based on that data. If the resource does not exist, it may be created.
Delete Remove a resource from the server. The client sends a request to the server, and the server deletes the specified resource.

Microservice-based architecture