|
|
|
Re: Problem opening pdf through Oracle Forms [message #428547 is a reply to message #428533] |
Wed, 28 October 2009 14:27 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
dlwixon
Messages: 92 Registered: September 2008
|
Member |
|
|
I also use web.show_document().
If the user wants to view the document while in oracle forms, we send the report to cache. So the pdf is created at that time.
If the user wants to save the document to the filesystem, we send the report to file.
If we want to open a pdf that has been stored in the filesystem, we have a java application that opens the pdfs for viewing.
Sorry, I can't offer any more help here.
|
|
|
|
Re: Problem opening pdf through Oracle Forms [message #482431 is a reply to message #431350] |
Thu, 11 November 2010 08:30 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
eng_amrelhanafy
Messages: 5 Registered: October 2010 Location: Egypt
|
Junior Member |
|
|
I tried opening the pdf using rundll32 , using this code
declare
x boolean;
begin
x := webutil_file_transfer.as_to_client(file_name ,file_name);
client_host('cmd /c rundll32 url.dll,FileProtocolHandler C:\word\quick reference.pdf' );
end;
it opened once , then it gave me the same message 'there was a problem reading this document 14'
any solution ?
|
|
|