/* (non-Javadoc)
* @see com.adito.core.actions.AuthenticatedAction#onExecute(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
*/
protected ActionForward onExecute(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
AjaxXmlBuilder builder = new AjaxXmlBuilder();
try {
onAjaxRequest(mapping, form, request, response, builder);
String content = builder.toString();
// Set content to xml
response.setContentType("text/xml; charset=UTF-8");
Util.noCache(response);
PrintWriter pw = response.getWriter();