142143144145146147148149
// needed for proper httpclient handling // but we do not return the value // method.getResponseBodyAsString(); method.releaseConnection(); } catch (Exception e) { throw new UnavailableAttachmentException(e); } }
5354555657585960
public void deleteAttachment(Property[] arg0, String arg1) throws UnavailableAttachmentException { DeleteMethod delete = new DeleteMethod(arg1); try { httpclient.executeMethod(delete); } catch (Exception e) { throw new UnavailableAttachmentException(e); } }