WAS v8.5 > Develop applications > Develop web services - RESTful services > Planning JAX-RS web applications

Define the HTTP headers and response codes for RESTful applications

HTTP headers and status codes are useful to help intermediary and client programs understand information about requests and responses for applications. HTTP headers contain metadata information. HTTP status codes provide status information about the response.

See the HTTP 1.1 specification to become familiar with HTTP headers and HTTP status codes. HTTP headers contain metadata information such as security authentication information, the user agent used, and cache control metadata. Standard HTTP headers are defined in the HTTP specification; however, we can use custom HTTP headers, if necessary.

We can read HTTP headers from the request and set the headers in the response. There are a set of common request and response headers, but there are also unique request and unique response headers. JAX-RS provides the HttpHeaders injectable interface and the @HeaderParam parameter annotation for reading HTTP headers. If a javax.ws.rs.core.Response object is returned from a resource method, we can set HTTP headers on the response. Also, we can set HTTP headers when an entity is written using the MessageBodyWriter interface.

We can set HTTP response status codes to help client programs understand the response. While responses can contain an error code in XML or other format, client programs can quickly and more are understand an HTTP response status code. The HTTP specification defines several status codes that are typically understood by clients.


Results

You have used HTTP headers to read request headers and set response status codes and headers for JAX-RS web applications.


Related


Define the resources in RESTful applications
Define the URI patterns for resources in RESTful applications
Define resource methods for RESTful applications
Define parameters for request representations to resources in RESTful applications
Define media types for resources in RESTful applications


+

Search Tips   |   Advanced Search