Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

PLPDF error (on shellprompt.net)

Andrew RDec 11 2006 — edited Dec 11 2006
Hi,

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?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 8 2007
Added on Dec 11 2006
3 comments
948 views