# File lib/cgikit/component.rb, line 244
  def generate_response
    response = Response.new
    handler = application.component_request_handler
    handler.transaction(self, context) do
      application.append_to_response(response, context)
    end
    response.component = self
    response
  end