PLPDF error (on shellprompt.net)
Andrew RDec 11 2006 — edited Dec 11 2006Hi,
I'm trying to produce a simple PDF via my Apex application (hosted on Shellprompt.net) using the following after-header process
DECLARE
l_blob BLOB;
BEGIN
Plpdf.init;
Plpdf.NewPage;
Plpdf.SetPrintFont('Arial',NULL,12);
Plpdf.PrintCell(50,10,'Test2');
Plpdf.SendDoc(l_blob);
-- print
owa_util.mime_header('application/pdf',FALSE);
htp.p('Content-Length: ' || dbms_lob.getlength(l_blob));
owa_util.http_header_close;
wpg_docload.download_file(l_blob);
END;
But I get a 'ORA-20000: Certification key is invalid. Please contact Support.' error.
Any idea why?