ShoppingCart shoppingCart = ShoppingCart.getSessionInstance(request, true);
shoppingCart.cancelTransaction();
PaymentEngine paymentEngine = shoppingCart.getPaymentEngine();
if (paymentEngine != null) {
paymentEngine.abort();
}
createEmptySecureTemplateInfo(request);
ContentBean contentBean = getContentBean(request);
String siteProfileClassName = contentBean.getContentSessionBean().getSiteProfile().getSiteProfileClass().getSiteProfileClassName();
ActionForward forward = new ActionForward("/web/fe/" + contentBean.getSiteDomain().getSiteDomainPrefix() + "/" + siteProfileClassName + "/home", true);