LoginResponse login = (LoginResponse) session.getAttribute(Global.LOGIN);
if (login != null) {
//Busca o parametro enviado pelo form
DocumentoCreateExternoRequest documento = gson.fromJson(request.getParameter("documento"), DocumentoCreateExternoRequest.class);
//L� o arquivo enviado
String fileDir = getFilePath(request, documento.getArquivoNome());
byte[] fileBytes = Files.readAllBytes(Paths.get(fileDir));
documento.setBytes(Base64Coder.encode(fileBytes));
String apiName = CAMINHO_API_DOCUMENTO + "CreateExterno";
HttpPost httpPost = new HttpPost(Global.ApiPortalBaseURL + apiName);