public ActionForward restoreSettings(
     ActionMapping mapping,
     ActionForm actionForm,
     HttpServletRequest request,
     HttpServletResponse response)
     throws GTClientException {
   // @todo: use javaScript to do this (havent time to work out the code for setting the select
   // field now)
   try {
     ConnectionSetupResultAForm form = (ConnectionSetupResultAForm) actionForm;
     form.setCurrentLocation(form.getOriginalLocation());
     form.setServicingRouter(form.getOriginalServicingRouter());
     return update(mapping, actionForm, request, response);
   } catch (Throwable t) {
     throw new GTClientException("Error restoring original connectionSetup settings", t);
   }
 }