Should we create an extension to allow th GetResourceResponse to return a status code and message?
This allows a resource to return any valid HTTP status code (e.g. 200, 404) Amendment Posted on Tuesday, 13 January 2009: Problem Statement:
When resources (images, REST APIs, styles, scripts) would normally return a HTTP response status code other than 200 (OK) there is no way to return this status to the consumer and forward it to the client (browser).
This response status may be used to indicate a number of conditions:
* 1xx - information 1xx
* 2xx - success
* 3xx - redirection
* 4xx - client error
* 5xx - server error
The status code may allow the client to handle redirects authentication requests and errors.
|