Hi,
I want to create a new attachment to a Confluence page inside a doPost(..) method of a HttpServlet, but I get an exception which I cannot explain. I have simplified the code (I am saving the data to a local file first; it is there and valid) in the servlet to this:
ConfluenceUser confluenceUser = AuthenticatedUserThreadLocal.get();
File file = new File("C:\\test.pdf");
Attachment attachment = new Attachment("C:\\test.pdf", "application/pdf", file.getTotalSpace(), "");
attachment.setCreator(confluenceUser);
attachment.setCreationDate(new Date());
attachment.setLastModificationDate(new Date());
this.attachmentManager.saveAttachment(attachment, null, new FileInputStream(file));
Page page = this.pageManager.getPage(6914058);
page.addAttachment(attachment);The .saveAttachment(..) throws "IllegalArgumentException: Attachment content", but what is the problem??
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.