throw new HttpErrorException(HttpURLConnection.HTTP_INTERNAL_ERROR, "Retrieved AjaxInfo could not be decrypted. Maybe the ajax call was defined for another WGA instance.", null);
}
// unzip
String unzipped = Zipper.unzip(zipped);
// deserialize
ajaxInfo = (AjaxInfo) new XStream(new Dom4JDriver()).fromXML(unzipped);
// put ajaxInfo on request so root tag can retrieve it
request.setAttribute(WGACore.ATTRIB_AJAXINFO, ajaxInfo);
}
catch (HttpErrorException e) {
throw e;