<%@ taglib prefix="s" uri="/struts-tags"%><%@page import="com.k_int.discover.update.UpdateRequestResponse"%><% request.setAttribute("decorator", "none"); response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP 1.0 response.setDateHeader ("Expires", 0); //prevents caching at the proxy server response.setContentType("application/json"); %><% UpdateRequestResponse updateResponse = (UpdateRequestResponse)request.getAttribute("updateResponse"); out.println("{\"update\":["); out.println(updateResponse.toJSON()); out.println("]}"); %>