Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

This object is a thin wrapper for the Java object HttpServletRequest. You may find further explanation for each method below in the docs for the underlying object.

Please see here: http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html

Properties

 

Methods

Method

Signature

Comments/Sample

getCharacterEncoding

string getCharacterEncoding()

 

getContentLength

int getContentLength()

 

getContentType

string getContentType()

 

getMethod

string getMethod()

 

getParameter

string getParameter(string parameterName)

 

getParameterMap

Hash getParameterMap()

 

getParameterNames

Enumeration getParameterNames()

 Enumeration docs

getParameterValues

string[ ] getParameterValues(string parameterName)

 

getPathInfo

string getPathInfo()

 

getProtocol

string getProtocol()

 

getQueryString

string getQueryString()

 

getRemoteAddr

string getRemoteAddr()

 

getRequestURI

string getRequestURI()

 

getRequestURL

string getRequestURL()

 

getScheme

string getScheme()

 

getServerName

string getServerName()

 

getServerPort

string getServerPort()

 

isSecure

boolean isSecure()

 

See Also