public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException, CommunicationException, NamingException
{
int rowID=0;
SupportFacadeHome supportFacade = (SupportFacadeHome)CVUtility.getHomeObject("com.centraview.support.supportfacade.SupportFacadeHome","SupportFacade");
try {
HttpSession session = request.getSession();
int userId = ((UserObject)session.getAttribute("userobject")).getIndividualID();
// call ejb to insert record
// initialize file vo
CategoryVO categoryVO = new CategoryVO();
CategoryForm catForm = (CategoryForm)form;
SupportFacade remote =(SupportFacade)supportFacade.create();
// set the VO from form bean data
// set the CategoryVO
if((String)catForm.getCategoryname() != null)
categoryVO.setTitle((String)catForm.getCategoryname());