<%@ page language="java" pageEncoding="UTF-8"%> <% //System.out.println("Inside upload.jsp"); String jsonStr = null; try{ jsonStr = com.revize.vh.filemgr.FileMgrVH.uploadFiles(request); response.setContentType("application/json"); }catch(Exception exp){ exp.printStackTrace(); response.setStatus(450); response.setContentType("text/plain"); jsonStr = exp.getMessage(); } //System.out.println("Inside upload.jsp jsonStr="+jsonStr); out.print(jsonStr); out.flush(); %>