comment.getParagraphs().add(new Paragraph(wordDoc));
comment.getFirstParagraph().getRuns().add(
new Run(wordDoc, "My Comment text !!!"));
wordDocBuilder.getCurrentParagraph().appendChild(comment);
// Add break
wordDocBuilder.insertBreak(BreakType.PAGE_BREAK);
// Add image
String imgUrl = "http://" + request.getServerName() + ":"
+ request.getServerPort() + request.getContextPath()
+ "/img/AsposeWords.gif";
// System.out.printf("Insert image from : %s\n", imgUrl);