This interface allows for the modification of HTTP request parameters and the inspection of the resulting HTTP response status and headers when they become available.
nsIHttpChannel is defined in netwerk/protocol/http/public/nsIHttpChannel.idl
. It is scriptable
and
has been frozen since Mozilla 1.3
.
Inherits from: nsIChannel.
To create an HTTP channel, use nsIIOService
with a HTTP URI, e.g.:
var ios = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.interfaces.nsIIOService);
var ch = ios.newChannel("http://www.example.com/", null, null);
ACString getRequestHeader(in ACString aHeader);
|
void setRequestHeader(in ACString aHeader, in ACString aValue, in boolean aMerge);
|
void visitRequestHeaders(in nsIHttpHeaderVisitor aVisitor);
|
ACString getResponseHeader(in ACString header);
|
void setResponseHeader(in ACString header, in ACString value, in boolean merge);
|
void visitResponseHeaders(in nsIHttpHeaderVisitor aVisitor);
|
boolean isNoStoreResponse();
|
boolean isNoCacheResponse();
|
| Attribute | Type | Description |
requestMethod
| ACString
| This attribute may only be set before the channel is opened. Set/get the HTTP request method (default is "GET"). Setter is case insensitive; getter returns an uppercase string.
Note: The data for a "POST" or "PUT" request can be configured via nsIUploadChannel; however, after setting the upload data, it may be necessary to set the request method explicitly. The documentation for
nsIUploadChannel
has further details.Throws an NS_ERROR_IN_PROGRESS if set after the channel has been opened. |
referrer
| nsIURI
| This attribute may only be set before the channel is opened. Get/set the HTTP referrer URI. This is the address (URI) of the resource from which this channel's URI was obtained (see RFC2616 section 14.36).
Note: The channel may silently refuse to set the Referer header if the URI does not pass certain security checks (e.g., a "https://" URL will never be sent as the referrer for a plaintext HTTP request). The implementation is not required to throw an exception when the referrer URI is rejected.
Throws an NS_ERROR_IN_PROGRESS if set after the channel has been opened. |
allowPipelining
| boolean
| This attribute is a hint to the channel to indicate whether or not the underlying HTTP transaction should be allowed to be pipelined with other transactions. This should be set to FALSE, for example, if the application knows that the corresponding document is likely to be very large. This attribute is true by default, though other factors may prevent pipelining.
Throws an NS_ERROR_IN_PROGRESS if set after the channel has been opened. |
redirectionLimit
| long
| This attribute specifies the number of redirects this channel is allowed to make. If zero, the channel will fail to redirect and will generate a NS_ERROR_REDIRECT_LOOP failure status.
Note: An HTTP redirect results in a new channel being created. If the new channel supports nsIHttpChannel, then it will be assigned a value to its
|
responseStatus
| long
| Get the HTTP response code (e.g., 200).
Throws NS_ERROR_NOT_AVAILABLE if called before the response has been received (before onStartRequest). Read only |
responseStatusText
| ACString
| Get the HTTP response status text (e.g., "OK").
Note: This returns the raw (possibly 8-bit) text from the server. There are no assumptions made about the charset of the returned text. You have been warned!
Throws NS_ERROR_NOT_AVAILABLE if called before the response has been received (before onStartRequest). Read only |
requestSucceeded
| boolean
| Returns true if the HTTP response code indicates success. The value of nsIRequest::status will be NS_OK even when processing a 404 response because a 404 response may include a message body that (in some cases) should be shown to the user. Use this attribute to distinguish server error pages from normal pages, instead of comparing the response status manually against the set of valid response codes, if that is required by your application.
Throws NS_ERROR_NOT_AVAILABLE if called before the response has been received (before onStartRequest). Read only |
This method is called to get the value of a particular request header..
ACString getRequestHeader( in ACString aHeader );
This method is called to set the value of a particular request header. This method allows, for example, the cookies module to add "Cookie" headers to the outgoing HTTP request. This method may only be called before the channel is opened. If aValue is empty and aMerge is false, the header will be cleared.
void setRequestHeader( in ACString aHeader, in ACString aValue, in boolean aMerge );
aValue.
Call this method to visit all request headers. Calling setRequestHeader while visiting request headers has undefined behavior. Don't do it!
void visitRequestHeaders( in nsIHttpHeaderVisitor aVisitor );
Get the value of a particular response header.
ACString getResponseHeader( in ACString header );
Set the value of a particular response header. This method allows, for example, the HTML content sink to inform the HTTP channel about HTTP-EQUIV headers found in HTML <META> tags. If aValue is empty and aMerge is false, the header will be cleared.
void setResponseHeader( in ACString header, in ACString value, in boolean merge );
aValue.
Call this method to visit all response headers. Calling setResponseHeader while visiting response headers has undefined behavior. Don't do it!
void visitResponseHeaders( in nsIHttpHeaderVisitor aVisitor );
Returns true if the server sent a "Cache-Control: no-store" response header.
boolean isNoStoreResponse( );
Returns true if the server sent the equivalent of a "Cache-control: no-cache" response header. Equivalent response headers include: "Pragma: no-cache", "Expires: 0", and "Expires" with a date value in the past relative to the value of the "Date" header.
boolean isNoCacheResponse( );
Page last modified 12:13, 26 Feb 2008 by Nickolay