@RequestMapping(value = "/wfstepAdvanceSearch", method = RequestMethod.GET)
  public String wfstepAdvanceSearch(
      @ModelAttribute("wfstepAdd") WFStep wfstep,
      HttpServletRequest request,
      HttpServletResponse response) {

    String name1 = "wfstepId", s1 = null, s2 = null;

    List<Object[]> returnString = null;

    wfstepList = new ArrayList();
    wfstep.setAdvanceSearchHidden(1);
    try {
      returnString = xmlService.populateXml(name1);
      // Iterator it=returnString.iterator();
      for (Object[] object : returnString) {
        WFStep v = new WFStep();

        s1 = (String) object[0];
        s2 = (String) object[1];

        v.setFirstLabel(s1);
        v.setSecondLabel(s2);
        wfstepList.add(v);
      }

    } catch (Exception e) {
      e.printStackTrace();
    }

    request.setAttribute("wfstepSearchAdvance", wfstepList);

    return "wfstepHome";
  }