The sendfile tag has no wiki summary.
5
votes
4answers
1k views
send_file just sends an empty file
Im looking for a way to download a xml file. I use:
file_path = 'folder/' + xml_name + '.xml'
send_file file_path, :type => "text/xml"
but this always downloads me an empty file. The file itself ...
4
votes
1answer
2k views
Difference between rails send_data and send_file, with example
Can you explain, what is the different between send_data and send_file. Which one is best for streaming and file download process?.
4
votes
2answers
182 views
SSL website in rails forwards me to a url with port 443 suffix
First off, this is my first SSL web application so I might be doing something horribly wrong.
We turned on SSL per request from a client on https://bla.be/
It seemed to work out of the box. We ...
3
votes
2answers
949 views
RSpec send_file testing
How to test a controller action that sends a file?
If I do it with controller.should_receive(:send_file) test fails with "Missing template" because nothing gets rendered.
3
votes
2answers
147 views
With sendfile(), is it possible to tell when in_fd is at EOF?
Reading through the man page of the Linux system call sendfile, I am wondering whether it is possible for the calling program to know when in_fd is at EOF. Presumably, this could be signaled by a ...
3
votes
1answer
243 views
rails how to know when send_file done
As it takes some time to prepare the content of the data to be downloaded, I want to show a message "Preparing file to download" when the user submits the request
Then when the file is ready, I use ...
3
votes
1answer
538 views
Invalid argument in sendfile() with two regular files
I'm trying to test the sendfile() system call under Linux 2.6.32 to zero-copy data between two regular files.
As far as I understand, it should work: ever since 2.6.22, sendfile() has been implemented ...
3
votes
3answers
147 views
Terminology: opposite of “zero copy”?
We're benchmarking some code that we've converted to use sendfile(), the linux zero-copy system call. What's the term for the traditional read()/write() loop that sendfile() replaces? I.e., in our ...
3
votes
1answer
176 views
sendfile() usage on two mmaped files (linux)
Can sendfile() linux syscall be used to send part of file from one mmaped file to other mmaped file?
3
votes
2answers
224 views
Is writing to a socket an arbitrary limitation of the sendfile() syscall?
Prelude
sendfile() is an extremely useful syscall for two reasons:
First, it's less code than a read()/write() (or recv()/send() if you prefer that jive) loop.
Second, it's faster (less syscalls, ...
2
votes
1answer
438 views
Message “X-Accel-Mapping header missing” in Nginx error log
I am running a Rails 3 site on Ubuntu 8.04 with Nginx 1.0.0 and Passenger 3.0.7.
In my Nginx error.log I started seeing the message X-Accel-Mapping header missing quite a lot. Googling lead me to the ...
2
votes
2answers
432 views
Django download file empty
I am writing a simple function for downloading a certain file, from the server, to my machine.
The file is unique represented by its id. The file is locatd corectly, and the download is done, but the ...
2
votes
1answer
289 views
Differnce between linux write and sendfile syscall
Im programming webserver (C), which should send big files. My question is:
What are the main differences in two syscalls: write and sendfile. Does sendfile depends on size of socket system buffer? I ...
1
vote
0answers
58 views
RSpec send_file testing with check of Content-Type
I have a Rails Controller that send a file with different Content-Type
Example for Exel-File, the controller set Content-Type = "application/excel"
and here is the RSpec test:
describe "GET ...
1
vote
1answer
59 views
Send file from client to server using XMLRPC?
I want to write Python code to send a file from client to server. server needs to save the file sent from the client. But my code have some bugs which I cannot fix. Below is my server code:
# ...
1
vote
1answer
95 views
Ruby/Sinatra send_file not working
I'm using send_file on a Sinatra app:
get '/update/dl/:upd' do
filename ="/uploads/#{params[:upd]}"
send_file(filename, :filename => "t.cer", :type => "application/octet-stream")
end
...
1
vote
1answer
56 views
Understanding sendfile() and splice()
sendfile() can be used to transmit data from a "file" descriptor to a "socket" descriptor in order to get data from machine A to machine B. Is it possible to get the data at the receiving end from the ...
1
vote
0answers
24 views
When csum_partial_copy_from_user() is called during a sendfile
Here is something I googled:
sendfile() is like write(), only directly from descriptor to a socket. That eliminates copying the data from the buffer cache to a buffer in user space.
Current NICs can ...
1
vote
2answers
123 views
How would you receive a file sent with 'sendfile'?
I'm trying to implement a basic file server. I have been trying to use the sendfile command found here: http://linux.die.net/man/2/sendfile I'm using TCP.
I can have it send fine, but its sending in ...
1
vote
1answer
313 views
rails media file stream accept byte range request through send_data or send_file method
I have the following problem. Sounds are hidden from the public folder, cause there are only certain Users who should have access to the sound files. So I made a certain method, which acts like a ...
1
vote
2answers
229 views
Does Amazon S3 help anything in this case?
I'm thinking about whether to host uploaded media files (video and audio) on S3 instead of locally. I need to check user's permissions on each download.
So there would be an action like get_file, ...
1
vote
2answers
499 views
How to download large file with binary mode in python?
I am code a download function in python. The file size >1GB. The server is linux, HTTP server is Karrigell. Client is browse, Firefox or IE. I meet a big trouble.
At first, I use sys.stdout() to ...
1
vote
2answers
737 views
rails send_file with nginx
I am trying to send a file via send_file, in rails 3... The file is found and is seemingly sent too, but for some reason it is not received...
Also even though :disposition => 'inline' is set, the ...
1
vote
2answers
248 views
Linux sendfile source
Where I can get sendfile function sources?
I can't find it in kernel sources...
0
votes
0answers
18 views
Jboss AS7, APR native connectors and sendfile
I've set out on an endeavour to implement support for a feature similar to mod_xsendfile on torquebox (www.torquebox.org). Torquebox is basically a bunch of code on top of JBoss AS 7, which makes my ...
0
votes
0answers
28 views
Did anyone used the XSENDFILETEMPORARY in apache2 virtual host?
Did anyone xsendfileTemporary in apache2 virtual host?
I have tried to use it in my virtual host, but it is showing the error message:
Syntax error on line 6 of ...
0
votes
1answer
58 views
delete the file from the server after the download is completed
I have a file server which has to be deleted after a user downloads it. I send the file with send_file, but I can't just put a File.delete(path) after that line because send_file returns immediatly, ...
0
votes
3answers
117 views
Cannot read file with send_file function in rails 3
The code I am using:
In view file:
<%= link_to "Download", download_image_path(image) %>
In controller:
def download
@image = Image.find(params[:id])
send_file "#{RAILS_ROOT}/public" ...
0
votes
2answers
329 views
Wicked_PDF Download Only - Rails 3.1
I currently run Rails 3.1 and am using the latest version of Wicked_pdf for PDF generation.
I have set everything up correctly, and PDFs are generated just fine.
However, I want the user to be able ...
0
votes
0answers
25 views
mod_python blocking sendfile needed
I am using the mod_python apache to support an api that will fetch files among other things. I need to enforce a restriction that a user has no more than two download calls to the api.
Now, I am ...
0
votes
0answers
112 views
How to sendFile in jml(Java MSN Messenger Library) on Android
Now,I can send and recive text message on android by my app client, and I can recive image too,but I can't send file/image
send message code:
messenger.sendText(contact.getEmail(), message);
send ...
0
votes
3answers
88 views
A simple sendfile program, but not works
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <sys/sendfile.h>
#include <sys/stat.h>
#include <fcntl.h>
int main(){
int fd1,fd2,rc;
...
0
votes
1answer
230 views
Playing an MP3 through Ruby on Rails in chrome
I'm writing a Ruby on Rails application which allows a user to upload an mp3 file, then play it back. I have it working to the point where a user can do those things, BUT there is an issue when ...
0
votes
1answer
206 views
Rails send_file not sending data when called through a web service
I am in a strange situation where send_file is unable to send file correctly. Here is situation:
Rail version: 3.0.10 and 3.1.0 [two different branches for testing]
Ruby: 1.9.2 on RVM
Webserver: ...
0
votes
1answer
110 views
sending xml file from php to an android application
I am trying to send an xml file as a httpresponse to a post from an android application.
I understood how to send data from a php page here.
Is it possible to send a xml file as a response?
Or do I ...
0
votes
1answer
52 views
How to 'pipe' or 'chain' output of a server socket to the input of another server socket similar to sendfile?
In Linux, using sendfile you can directly transfer file out to a socket.
But let's say we have two server socket, we want to the output of the first one to go out to the second one.
How to do that?
...
0
votes
0answers
39 views
AProblem with send file (using Servlet)
I am a new Java programer. I have a example for sent file.(word file. Using ms-word 2003).
The file is downloaded successful but it can't open. The ms-word messages are:
"Word experienced an error ...
0
votes
1answer
84 views
Sending file in C#
Can I send file on one port to more computers at the same time in C#? Like I have code to send by System.Net.Sockets on port 1234and I want to send file to 5 computers. Can I do it at the same time?
0
votes
2answers
752 views
Rails 3 - how to send_file in response of a remote form in rails?
I have this coupon form
<%form_for(:download,:download,:url=>{:controller=>"coupons",:action=>"verifycoupon"},:remote=>true) do |f| %>
<%=text_field :download,:code%>
...
0
votes
3answers
317 views
send_file issue
I am using send_file to send some CSV data that I generate.
file = "public/text.csv"
File.open(file, "w"){ |f| f << "Hello World!" }
send_file(file, :type => "text/csv; charset=utf-8")
But ...
0
votes
0answers
96 views
write PHP content to socket in a optimized way
I wrote a web server that supports PHP. I used the
FILE *file= popen("php -f test.php","r") and fread(buffer, fileLen, 1, file);to read the php output and sent to the socket using send() method.
...
0
votes
1answer
232 views
Rails, Download from BLOB database
i have one problem
I save my upload data in the blob file type in the database..
now i want to download it..
how to manage that
i have try this way (document_file is a field with blob data)
...
0
votes
1answer
86 views
sendfile() doesn't work to copy normal text file
The problem with sendfile is it can't copy two text files using the file fds.
The error is EINVAL.
// Descriptor is not valid or locked, or an mmap()-like operation is not available for in_fd.
What ...
0
votes
0answers
421 views
Rails send_file does not send file
I have a question about Rails and send_file.
I have an application which allows the user to select files, if he selected just one file he will get it direct for download. If he selected several ...
0
votes
1answer
258 views
Google document viewer with rails
I'm trying to embed the Google document viewer (http://googlesystem.blogspot.com/2009/09/embeddable-google-document-viewer.html) on my Ruby on Rails site and it keeps displaying "Sorry, this type of ...
0
votes
1answer
508 views
rails send_file and send_data sends out zero byte files
I'm trying to send a pdf back to the user but I'm having serious problem getting send_file and send_data to work. I created the pdf file as follows:
tmp = Tempfile.new('filled')
new_tmp_path = ...