[BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread deepak gupta
Hi All,   How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?   As of now : I am running a http listner in to remote machine. I want to copy a file from local system to the remote machine where my HTTP/HTTPS Listner is running. Currently i am comressing the file, then reading the

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 11:01 PM, deepak gupta dg288_m...@yahoo.co.in wrote: [..] Please mention if i can do it by using some other protocol. [..] Perhaps you should consider something more tuned to handle file transfers like rsync or even just sftp/scp. Is there a reason you *have* to use

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread deepak gupta
Ibrahim nou...@gmail.com wrote: From: Noufal Ibrahim nou...@gmail.com Subject: Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS? To: Bangalore Python Users Group - India bangpypers@python.org Date: Thursday, 10 September, 2009, 11:05 PM On Thu, Sep 10, 2009

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 11:16 PM, deepak gupta dg288_m...@yahoo.co.in wrote: Hi Noufal, Thanks for your quick reply. Actually at remote site we can not open the other ports except 443. thats why i am using HTTPS for this. I don't know exaxtly, how to use rsync or even just sftp/scp or how

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread deepak gupta
Yes it is return in python. --- On Thu, 10/9/09, Noufal Ibrahim nou...@gmail.com wrote: From: Noufal Ibrahim nou...@gmail.com Subject: Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS? To: Bangalore Python Users Group - India bangpypers@python.org Date

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 11:24 PM, deepak gupta dg288_m...@yahoo.co.in wrote: Yes it is return in python.[..] I expect it will be slow then. If you can install an rsync server on the remote end, it would be nice. Then you can just rsync the files over. If you can't do that, one option is to

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Sriram Narayanan
On Thu, Sep 10, 2009 at 11:50 PM, Noufal Ibrahim nou...@gmail.com wrote: On Thu, Sep 10, 2009 at 11:24 PM, deepak gupta dg288_m...@yahoo.co.in wrote: Yes it is return in python.[..] I expect it will be slow then. If you can install an rsync server on the remote end, it would be nice. Then