Hi,Yes, you can use FormsService API for generating interactive
PDF.Sample codebyte[] xdpData = (data);Document docData = new
Document(xmlData);PDFFormRenderOptions options = new
PDFFormRenderOptions();options.setContentRoot(xdpLocation); // location
of XDP Document docPDF =
formsService.renderPDFForm(fileName,docData,options);byte[] result =
IOUtils.toByteArray(docPDF.getInputStream());