i am trying to build a PDF file out of a binary stream which i receive as response from an ajax request.
Via XmlHttpRequest i receive following data:
%PDF-1.4....
.....
....hole data representing the file
....
%% EOF
What i tried so far, was to embed my data via data:uri.
Now, there's noting wrong with it. It works fine. Unfortunately it does not work in IE9, and FF.
Possible reason may be that FF and IE9 have their problems with this usage of the data-uri.
Now, i'm looking for any solution that works for all browsers.
Here's my code:
// responseText encoding
pdfText=$.base64.decode($.trim(pdfText));
// Now pdfText contains %PDF-1.4 ...... data...... %%EOF
var winlogicalname = "detailPDF";
var winparams = 'dependent=yes,locationbar=no,scrollbars=yes,menubar=yes,'+
'resizable,screenX=50,screenY=50,width=850,height=1050';
var htmlText = '<embed width=100% height=100%'
+ ' type="application/pdf"'
+ ' src="data:application/pdf,'
+ escape(pdfText)
+ '"></embed>';
// Open PDF in new browser window
var detailWindow = window.open ("", winlogicalname, winparams);
detailWindow.document.write (htmlText);
detailWindow.document.close ();
As i said .... works fine for Opera and Chrome (Safari not tested). Using IE or FF will bring up a blank new window.
Is there any solution like building a pdf file on file system in order to let the user download it?
I need a solution that works in all browsers at least in IE, FF, Opera, Chrome and Safari.
I have no permission to edit the web-service implementation. So it had to be a solution at client-side.
Any ideas???