0

我正在尝试保存经过数字签名的 pdf。但是当我单击保存后关闭文档时,我在 javascript 控制台中收到此错误。

NotAllowedError:安全设置阻止访问此属性或方法。Doc.URL:2:XFA:FormSchV_Dtls[0]:docClose

就像宏没有被保存一样。我必须在 MCA 服务器上上传此文件,因为我必须提交退货,但服务器拒绝了它。请帮帮我!

4

1 回答 1

1

Does the document by chance have a willClose script?

From the error message, it seems that the document is not really a PDF, but an XFA file.

With "regular" PDFs, applying a digital signature (a real one), implies saving the document. You might check whether this happens. Then you will no longer need to save it specifically, but can close it immediately.

于 2014-03-30T02:18:48.497 回答