WsRequest
Overview
WsRequest
represents an HTTP request in a REST-WS environment, offering comprehensive methods to retrieve and manipulate request data. The class provides access to request headers, parameters, cookies, content, and metadata such as character encoding, content type, and request method. Additionally, it supports retrieving information about the client, server, and request path.
Key capabilities include retrieving request headers and their values (getHeader
, getHeaders
), managing request parameters (getParameter
, getParameterMap
), and accessing cookies (getCookies
). It also allows obtaining the body content of the request (getContents
) and metadata such as the query string (getQueryString
), server name (getServerName
), and remote address (getRemoteAddr
). The class also supports advanced features like handling multi-part requests and obtaining localized language preferences (getLocaleLanguageTag
).
Properties Summarized
Returns the name of the character encoding used in the body of this request.
Methods Summarized
Returns the length, in bytes, of the request body and made available by the input stream, or -1 if the length is not known.
Returns the MIME type of the body of the request, or null
if the type is not known.
Get raw the contents of the request.
Returns the portion of the request URI that indicates the context of the request.
Returns an array containing all of the Cookie
objects the client sent with this request.
Returns the value of the specified request header as a long
value that represents a Date
object.
Returns the value of the specified request header as a String.
Returns an enumeration of all the header names this request contains.
Returns all the values of the specified request header as an array of String
objects.
Returns the value of the specified request header as an int
.
Returns the Internet Protocol (IP) address of the interface on which the request was received.
Returns the host name of the Internet Protocol (IP) interface on which the request was received.
Returns the Internet Protocol (IP) port number of the interface on which the request was received.
Returns the preferred Locale
that the client will accept content in, based on the Accept-Language header.
Returns an array of Locale
objects indicating, in decreasing order starting with the preferred locale, the locales that are acceptable to the client based on the Accept-Language header.
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT.
Returns the value of a request parameter as a String
, or null
if the parameter does not exist.
Returns an object of the parameters of this request.
Returns an array of String
objects containing the names of the parameters contained in this request.
Returns an array of String
objects containing all of the values the given request parameter has, or null
if the parameter does not exist.
Returns any extra path information associated with the URL the client sent when it made this request.
Returns any extra path information after the servlet name but before the query string, and translates it to a real path.
Returns the name and version of the protocol the request uses in the form *protocol/majorVersion.
Returns the query string that is contained in the request URL after the path.
Gets the real path corresponding to the given virtual path.
Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.
Returns the fully qualified name of the client or the last proxy that sent the request.
Returns the Internet Protocol (IP) source port of the client or last proxy that sent the request.
Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request.
Reconstructs the URL the client used to make the request.
Returns the name of the scheme used to make this request, for example, http
, https
, or ftp
.
Returns the host name of the server to which the request was sent.
Returns the port number to which the request was sent.
Returns the part of this request's URL that calls the servlet.
Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS.
Properties Detailed
characterEncoding
Returns the name of the character encoding used in the body of this request. This method returns null
if the request does not specify a character encoding
Methods Detailed
getContentLength()
Returns the length, in bytes, of the request body and made available by the input stream, or -1 if the length is not known. For HTTP servlets, same as the value of the CGI variable CONTENT_LENGTH.
getContentType()
Returns the MIME type of the body of the request, or null
if the type is not known. For HTTP servlets, same as the value of the CGI variable CONTENT_TYPE.
getContents()
Get raw the contents of the request.
In case of multipart request, all uploaded items are listed separately. In case of a request with a single body, the contents array consists of one item, the body.
This method returns an empty array if the request has no contents.
Sample
getContextPath()
Returns the portion of the request URI that indicates the context of the request. The context path always comes first in a request URI. The path starts with a "/" character but does not end with a "/" character. For servlets in the default (root) context, this method returns "". The container does not decode this string.
It is possible that a servlet container may match a context by more than one context path. In such cases this method will return the actual context path used by the request and it may differ from the path returned by the javax.servlet.ServletContext#getContextPath() method. The context path returned by javax.servlet.ServletContext#getContextPath() should be considered as the prime or preferred context path of the application.
getCookies()
Returns an array containing all of the Cookie
objects the client sent with this request. This method returns an empty array if no cookies were sent.
getDateHeader(name)
Returns the value of the specified request header as a long
value that represents a Date
object. Use this method with headers that contain dates, such as If-Modified-Since
.
The date is returned as the number of milliseconds since January 1, 1970 GMT. The header name is case insensitive.
If the request did not have a header of the specified name, this method returns -1. If the header can't be converted to a date, the method throws an IllegalArgumentException
.
Parameters
getHeader(name)
Returns the value of the specified request header as a String. If the request did not include a header of the specified name, this method returns null. If there are multiple headers with the same name, this method returns the first head in the request. The header name is case insensitive. You can use this method with any request header.
Parameters
Sample
getHeaderNames()
Returns an enumeration of all the header names this request contains. If the request has no headers, this method returns an empty enumeration.
Some servlet containers do not allow servlets to access headers using this method, in which case this method returns null
getHeaders(name)
Returns all the values of the specified request header as an array of String
objects.
Some headers, such as Accept-Language
can be sent by clients as several headers each with a different value rather than sending the header as a comma separated list.
If the request did not include any headers of the specified name, this method returns an empty array. The header name is case insensitive. You can use this method with any request header.
Parameters
getIntHeader(name)
Returns the value of the specified request header as an int
. If the request does not have a header of the specified name, this method returns -1. If the header cannot be converted to an integer, this method throws a NumberFormatException
.
The header name is case insensitive.
Parameters
getLocalAddr()
Returns the Internet Protocol (IP) address of the interface on which the request was received.
getLocalName()
Returns the host name of the Internet Protocol (IP) interface on which the request was received.
getLocalPort()
Returns the Internet Protocol (IP) port number of the interface on which the request was received.
getLocaleLanguageTag()
Returns the preferred Locale
that the client will accept content in, based on the Accept-Language header. If the client request doesn't provide an Accept-Language header, this method returns the default locale for the server. Returns a well-formed IETF BCP 47 language tag representing this locale.
getLocalesLanguageTags()
Returns an array of Locale
objects indicating, in decreasing order starting with the preferred locale, the locales that are acceptable to the client based on the Accept-Language header. If the client request doesn't provide an Accept-Language header, this method returns an array containing one Locale
, the default locale for the server. Returns well-formed IETF BCP 47 language tags representing the locales.
getMethod()
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT. Same as the value of the CGI variable REQUEST_METHOD.
getParameter(name)
Returns the value of a request parameter as a String
, or null
if the parameter does not exist. Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data.
You should only use this method when you are sure the parameter has only one value. If the parameter might have more than one value, use #getParameterValues(String).
If you use this method with a multivalued parameter, the value returned is equal to the first value in the array returned by getParameterValues
.
If the parameter data was sent in the request body, such as occurs with an HTTP POST request, then reading the body directly via #getInputStream or #getReader can interfere with the execution of this method.
Parameters
getParameterMap()
Returns an object of the parameters of this request.
Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data.
getParameterNames()
Returns an array of String
objects containing the names of the parameters contained in this request. If the request has no parameters, the method returns an empty array.
getParameterValues(name)
Returns an array of String
objects containing all of the values the given request parameter has, or null
if the parameter does not exist.
If the parameter has a single value, the array has a length of 1.
Parameters
getPathInfo()
Returns any extra path information associated with the URL the client sent when it made this request. The extra path information follows the servlet path but precedes the query string and will start with a "/" character.
This method returns null
if there was no extra path information.
Same as the value of the CGI variable PATH_INFO.
getPathTranslated()
Returns any extra path information after the servlet name but before the query string, and translates it to a real path. Same as the value of the CGI variable PATH_TRANSLATED.
If the URL does not have any extra path information, this method returns null
or the servlet container cannot translate the virtual path to a real path for any reason (such as when the web application is executed from an archive). The web container does not decode this string.
getProtocol()
Returns the name and version of the protocol the request uses in the form protocol/majorVersion.minorVersion, for example, HTTP/1.1. For HTTP servlets, the value returned is the same as the value of the CGI variable SERVER_PROTOCOL
.
getQueryString()
Returns the query string that is contained in the request URL after the path. This method returns null
if the URL does not have a query string. Same as the value of the CGI variable QUERY_STRING.
getRealPath(path)
Gets the real path corresponding to the given virtual path.
Parameters
getRemoteAddr()
Returns the Internet Protocol (IP) address of the client or last proxy that sent the request. For HTTP servlets, same as the value of the CGI variable REMOTE_ADDR
.
getRemoteHost()
Returns the fully qualified name of the client or the last proxy that sent the request. If the engine cannot or chooses not to resolve the hostname (to improve performance), this method returns the dotted-string form of the IP address. For HTTP servlets, same as the value of the CGI variable REMOTE_HOST
.
getRemotePort()
Returns the Internet Protocol (IP) source port of the client or last proxy that sent the request.
getRequestURI()
Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request. The web container does not decode this String. For example: <table summary="Examples of Returned Values"> <tr align=left><th>First line of HTTP request </th> <th> Returned Value</th> <tr><td>POST /some/path.html HTTP/1.1<td><td>/some/path.html <tr><td>GET http://foo.bar/a.html HTTP/1.0 <td><td>/a.html <tr><td>HEAD /xyz?a=b HTTP/1.1<td><td>/xyz </table>
getRequestURL()
Reconstructs the URL the client used to make the request. The returned URL contains a protocol, server name, port number, and server path, but it does not include query string parameters.
If this request has been forwarded using javax.servlet.RequestDispatcher#forward(ServletRequest,ServletResponse), the server path in the reconstructed URL must reflect the path used to obtain the RequestDispatcher, and not the server path specified by the client.
This method is useful for creating redirect messages and for reporting errors.
getScheme()
Returns the name of the scheme used to make this request, for example, http
, https
, or ftp
. Different schemes have different rules for constructing URLs, as noted in RFC 1738.
getServerName()
Returns the host name of the server to which the request was sent. It is the value of the part before ":" in the Host
header value, if any, or the resolved server name, or the server IP address.
getServerPort()
Returns the port number to which the request was sent. It is the value of the part after ":" in the Host
header value, if any, or the server port where the client connection was accepted on.
getServletPath()
Returns the part of this request's URL that calls the servlet. This path starts with a "/" character and includes either the servlet name or a path to the servlet, but does not include any extra path information or a query string. Same as the value of the CGI variable SCRIPT_NAME.
This method will return an empty string ("") if the servlet used to process this request was matched using the "/*" pattern.
isSecure()
Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS.
Last updated
Was this helpful?