vote up 1 vote down star

Modifying the HTTP Response Using Filters

flag

63% accept rate

3 Answers

vote up 1 vote down check

I think the question relates to ASP.NET, not Java. This might help:

http://professionalaspnet.com/archive/2008/04/13/What-is-the-Difference-between-an-httpModule-and-an-httpHandler_3F00_.aspx

link|flag
vote up 1 vote down

These kind of components are called filters in the Java world. They are capable of modifying requests/responses before they are dispachted to the handler component resp. before the response is delivered to the client.

In ASP.NET these kind of components are called HTTP Modules.

link|flag
vote up 0 vote down

USE : response

Purpose

The response object is an instance of the Servlet API's HttpServletResponse class

Examples

class BookController { def downloadFile = { byte[] bytes = // read bytes response.outputStream << bytes } }

Description

The Servlet API's HttpServletResponse class can be used within Grails to perform all typical activities such as writing out binary data, writing directly to the response and sending error response codes to name but a few.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.