In my application I am having multiple adobe templates in terms of XDPs.
As per business requirement I need to create a pdf which will have
multple tempaltes and xmls as inputs.To achieve this I am using below
api outputDocument =
outClient.generatePDFOutput(TransformationFormat.PDF, templateFileName,
templateDir,null, pdfOptions, inXMData);For each invoice I am making a
call to server, but due to this performance getting affected.Is there
any way to get the multiple pdfs in single call by passi...