我正处于寻找可以在 Web 服务器上创建“智能”动态 PDF 的工具的早期阶段,具有特定类型的所需智能:当 PDF 被“调用”(打开、启动)时,它会读取命令行参数然后嵌入在 PDF 中的 javascript 使用它们来进行 SOAP 调用。一些伪代码来澄清:
// web-server pseudo code
ACROBAT acrobat = new ACROBAT();
acrobat.Open(PDFName, args[]);
// pseudo-code running inside the PDF enviroment
function MakeSOAPCall()
{
custid = thisPDF.GetCommandLineArguments("CustomerID"); // extracts a value from args[]
// now build a SOAP call using custid as one of the parameters
.
.
.
}
使用 Acrobat Pro 可以做到这一点吗?