Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
app.post('/asset', function(request, response){
  var tempFile="/home/applmgr/Desktop/123456.pdf";
  fs.readFile(tempFile, function (err,data){
     response.contentType("application/pdf");
     response.send(data);
  });
});

I am a new bie to expressjs, I can't send the response with the data object. The binary content is visible in the browser. Give me suggestions how to handle this ?

share|improve this question
Try response.end(data); express's send method might be doing some second-guessing. – ebohlman Jul 22 '12 at 11:28

2 Answers

up vote 0 down vote accepted

I tested your code and it works for me in chrome with one change: Change app.post to app.get

EDIT: since you seem to think a POST-only server is a good idea, read this: http://net.tutsplus.com/tutorials/other/a-beginners-introduction-to-http-and-rest/ Scroll down until the HTTP verbs and check out the difference between GET and POST. :)

Some quick research suggests that other browsers might have other issues, IE for example might expect the URL to end in .pdf. Since I'm on my Mac I can't test that for you ;)

share|improve this answer
yes after changing from post to get it is working in my firefox, safari, opera and chrome – Dextor Jul 23 '12 at 9:41
So it is not possible with the app.post ? Because I configured the server and maintaining to take only post requests. – Dextor Jul 23 '12 at 9:47
hmm... not sure why you would configure your server to do POST requests only: browser's GET any URL you send them to. That's just how http works. :) POST is usually used for form submissions, or when you use HTTP to create something, not GET it. – rdrey Jul 23 '12 at 11:25
@DSK added a link in my answer that will clear this up for you. – rdrey Jul 23 '12 at 11:30
Thanks -) rdrey – Dextor Jul 23 '12 at 12:19

My Solution for sending a PDF directly to the Browser:

app.get('/my/pdf', function (req, res) {
    var doc = new Pdf();
    doc.text("Hello World", 50, 50);

    doc.output( function(pdf) {
        res.type('application/pdf');
        res.end(pdf, 'binary');
    }
}

res.end() with the second param 'binary' did the trick in my case. Otherwise express interpret it as a str

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.