- The resource
- The URL
- The representation
For examle a few want data in normal HTML format and some in normat text format. Others need the JSON format and still others in XML format.
The formal definition of Content Negotiation as “the process of selecting the best representation for a given response when there are multiple representations available”.
Now, the fact should be clear, “Content Negotiation” means the client and server can negotiate. It’s not always possible for the server to return data in the requested format. That’s why it’s called negotiation, not demand. Ha.Ha.. And in this case the service will return data in the default format.
The question is, how does the Web API know what the clinet expects? By checking below the header of the request object.
Content-type: which request to API to represent data in this type.
Accept: The acceptable media types for the response, such as “application/json,” “application/xml,” or a custom media type such as "application/vnd.example+xml".
Accept-Charset: The acceptable character sets, such as UTF-8 or ISO 8859-1.
Accept-Encoding: The acceptable content encodings, such as gzip.
Accept-Language: The preferred natural language, such as “en-us”.
Those are four headers of the request object for the request to the server to represent data in the requested way if possible.
In this example we will implement a simple Web API application and using Fiddler too we will request the Web API to return data in our preferred format. So, let’s start with an example.
Oh, before proceeding to the example I would like to clear up one more concept. We will provide those header values in this format.
Superset/Subset
For example, if the value is "application/json" then the “application is representing the super set” and “json” is the subset of the “application” super set.
If we specify “application/xml” then again “application” is the superset and “xml” is the subset of the application.
Fine, so let’s proceed to the example.
- Request data in JSON format
Here is our HTTP header information with HttpRequest message
User-Agent: Fiddler
Host: localhost:11129
Now, we are seeing that we did not set Content-Type header to request data in JSON format . But Web API is returning data in JSON format. The reason is “If we do not specify any “Content-Type” then by default Web API will return JSON data. Like the following output.
And obviously we could modify the header set like the following to get data in JSON format.
User-Agent: Fiddler
Content-type: application/json
Host: localhost:11129
Both requests will provide the same output in reality.
- Request data in XML format
Now to get data in XML format we need to set the Content-Type header of HttpRequest. Here is an example header set for the following output.
User-Agent: Fiddler
Content-type: application/xml
Host: localhost:11129
And, as out content-type header indicates we are getting data in XML format.
Now, those are the two formats that the Web API can supply by default. If we want various types of representations then we need to implement a media type formatter in the Web API.
Understand Accept Header in HttpRequest
In previous examples we saw how a content-type header works with HttpRequest. In this example we will understand the “Accept” header of HttpRequest.
By checking the “Accept” header , the Web API understands which representation the client is able to accept. For example, if we specify that the client can understand the following representation:
application/xml , application/json, text/javascript
Then the Web API will return data in JSON format, the reason is JSON is the default format of the Web API, althought the client’s first preference is the XML format. We will prove it with a small example. Have a look at the following screen.
Here we have specified that the accept type is as in the following:
application/xml , application/json, text/javascript
And in the response we are getting data in JSON format although we have specified the following:
Content-Type: application/xml
So, here the Web API is ignoring the Content-type header.
Understand Accept-Language header
In the Accept-Language header we can specify the preferred language that we want to get from the Web API application. The Accept-Language header is as in the following:
Accept-Language: en-IN, en-US
It indicates that my first choice is Indian English but if that is not possible then please give me US English and if that is not possible then please provide the data in the default language.



No comments:
Post a Comment