Analysis Of REST-Based Networking

This is a quick introduction to some of the concepts that come up when you are doing REST-based networking. You have a lot of options when you're talking to various Servers. If the Server wants you to use sockets, of course, you can do that.

If you want to use SOAP, you can do that. If you have a REST-based Server out there, you can also do that. Now, we're just going to talk about REST and SITS by far the most common. Here're some statistics from a few years ago.


Networking

And you can see how dominant REST has become. One of the main drivers for the success of REST is that it's easy to access from JavaScript clients. Also, there are a lot of JavaScript clients out there on the web and of course servers want to make it easy for all those clients to access them so they typically provide a REST style API.

REST means representational state transfer and the term comes from a PhD dissertation by Roy Fielding back in two thousand. And, his insight really was that the world wide web is a pretty good model for a distributed sort of network architecture. There's a lot of nice features that HTTP gives us that the traditional remote procedure call more of the sort of soap based style did not.

So, with the loosely coupled REST style, we get scalability and reliability or just something we'll talk about well ahead. Let's look at some details so obviously we have resources sitting on a Server

Networking

And, we want to access it from our clients to use a RESTfull API.
Networking

We create a URL and that URL identifies which resource on the server we want to access.

Networking

And then we include one of the HTTP verbs to say what we want to do to that resource.

Networking

The URL is human readable. Here’s an example so here we're trying to retrieve see the get verb on the front product with an ID of two

Networking

And that style right there is one of the most common ones. But REST really isn't prescriptive; it is more some architectural guidance. So, the details can vary from Server to Server, so for example, it's possible that the server you're talking to uses that style with a query string instead of the slash ID that we saw a moment ago.So just check the documentation for the service that you're working with

Networking

Look in just a little more detail at the different operations so the verb get is used to retrieve a resource

Networking

And we'll get back the resource. In this case a product as the body in the response

Networking

If we want to create a new resource, we use post

Networking

So we serialize the object and include it in the body of the post

Networking

and then the server will create the resource in its own data store

Networking

It will send it back to us. Well this is another thing that can vary by server. It’ll contain either the new resource that just got created or maybe just an ID or URL in case we want to retrieve that same resource again later

Networking

And use put to update an existing resource

Networking

And again you would include the new data as part of your request

Networking

and finally use delete to remove a resource

Networking

There are other HTTP verbs that we're not going to discuss like option, head and so on. There are some rest services that support these but they're really uncommon. Rest uses the regular HTTP response codes to tell you whether or not the request succeeded or failed . So for example you might get back ok ,not found and so on. So it's probably good idea check those when you get back your response .

Networking

Rest also uses the content type flag to tell you the format of the data that you're receiving; here we have text xml but you might also get something like application slash Json. Json probably would be more common these days

Networking

And then of course in the body is the actual data that you requested. Here is the XML example and one kind of interesting thing about rest is… it’s pretty lightweight there is no extra envelope surrounding the response like there would be in something like soap

Networking

Next we're going to talk about a really nice performance issue. Some of the operations that you do with a server change the data on the server and some don't. Those that don't are called safe so get options in head or considered safe operations so they don't change the server

Networking

In the safe operations the results can be cached, and obviously you have a cast in the middle and there's different people that would do the caching probably your network provider or your cellular network provider in the case of mobile.

Networking

So the first time you call a safe method you have to go all the way to the server of course

But the response can get cached and then of course sent back to the client

Networking

The next time you make that same request you get a response back immediately from the cache without going all the way to the server

Networking

So this is one of the things that gives rest-based service of their scalability and performance.

Another nice property is that some of the HTTP verbs are idempotent operations and what that means is. If you send off the same request so two requests contain the same data, the two requests or more requests are going to yield the same result on the server. And this is actually a little bit tricky to see .So let's look at a quick example here so these operations are idempotent

Networking

And it's probably not surprising that get is one of them

For example if you sent that request to the server, multiple times the state of the server would be the same after each one of those calls. Therefore, that is pretty intuitive.
Networking


I think here's the one that's not so intuitive  -- delete is actually idempotent so what that means is the first time I send this off that's the resulting state of the server after the operation has finished.

Networking

If I send that same request again the state of the server won't change. The item in question has already been deleted. This property does not require that the response is the same each time. For example the second time we sent that request it's perfectly fine that we receive a not found because the record doesn't exist the second time.

Networking

So the reason you care about this is because idempotent operations can be sent multiple times which means that you can resend a request multiple times without worrying about issues like side effects.

Let's finish off with just a couple of quick guidelines generally these days JSON is recommended mostly because

  • It's smaller and therefore it's more performant.
  • Check your result codes.
  • Resend requests when they are idempotent and safe if you get a timeout.
  • Check the server documentation just to make sure that you understand something like the URL format. Not every service that looks at first like a restful service actually is. There some out there that don't follow many of the rest guidelines so read the documentation.
  • Rest does not include any security specification so it's really up to the server and you as the client are just going to have to use whatever the server requires of you typically these days that'll be OAuth2.
  • And finally prefer secure connections HTTPS to protect your data as it goes across the wire.

Next Recommended Readings