[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 fi

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 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 HTTP? -- ~noufa

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

2009-09-10 Thread deepak gupta
oufal Ibrahim wrote: From: Noufal Ibrahim Subject: Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS? To: "Bangalore Python Users Group - India" Date: Thursday, 10 September, 2009, 11:05 PM On Thu, Sep 10, 2009 at 11:01 PM, deepak gupta wrote: &g

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 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 to create > the

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 wrote: From: Noufal Ibrahim Subject: Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS? To: "Bangalore Python Users Group - India" Date: Thursday, 10 September, 2009, 11:19 PM On T

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 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 split your compressed fi

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 wrote: > On Thu, Sep 10, 2009 at 11:24 PM, deepak gupta 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 > ov

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

2009-09-11 Thread Carl Karsten
On Thu, Sep 10, 2009 at 12:31 PM, deepak gupta wrote: > 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 i