/**
  * Handles POST requests for /client.html
  *
  * @param remoteResource the object with form data about entry point.
  * @return name of JSP page which will be shown.
  */
 @RequestMapping(value = "/client.html", method = RequestMethod.POST)
 public String doClient(RemoteResource remoteResource) {
   remoteResource.sendRequest();
   return "client";
 }