// Deploy need to be multipart
// file content must be posted as multipart/form-data
FileDataBodyPart filePart = new FileDataBodyPart("id", file);
FormDataMultiPart formpart = new FormDataMultiPart();
if (application != null) {
formpart = formpart.field("name", application);
}
if (contextroot != null) {
formpart = formpart.field("contextroot", contextroot);
}
if (description != null) {