Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
KB-20220312-01
KB-20220312-01
KB-20220312-01

Version

before XFRX 22.0

Symptoms

If password for certificate not is valid, then XFRX don't close opened pdf file.

Workaround

Calls method Finish() of internal object oDocumentwriter.

Code Block
loSession=EVALUATE([xfrx("XFRX#LISTENER")])
loSession.DigitalSignature("testeqeus.pfx","badpassword")
lnRetVal = loSession.SetParams("output.pdf", , , ,.F.,,"PDF")
IF lnRetVal<>0
   IF INLIST(lnRetVal, -11, -12)
      loSession.oxfSession.oDocumentwriter.oPDF.Finish()
   ENDIF
ENDIF


Code Block
loSession=EVALUATE([xfrx("XFRX#INIT")])
loSession.DigitalSignature("testeqeus.pfx","badpassword")
lnRetVal = loSession.SetParams("output.pdf", , , ,.F.,,"PDF")
IF lnRetVal<>0
   IF INLIST(lnRetVal, -11, -12)
      loSession.oDocumentwriter.oPDF.Finish()
   ENDIF
ENDIF