Discussion:
[zeromq-dev] Sending files from client to server using zeromq
ashwini ramamurthy
2013-06-26 14:59:21 UTC
Permalink
Hi,


I want to send a xml file from the client to the server using zeromq . I
was previously using HTTP PUT. I went through the zeromq discussion list
but could not find many discussions on file transfer.My question is :what
are the advantages of using zeromq to transfer files?
How are large files transferred in zeromq and how would it be better than
using HTTP?


Thanks,
Ashwini
Lukasz Nowak
2013-06-27 15:49:20 UTC
Permalink
Hello,
Post by ashwini ramamurthy
Hi,
I want to send a xml file from the client to the server using zeromq . I
was previously using HTTP PUT. I went through the zeromq discussion list but
could not find many discussions on file transfer.My question is :what are
the advantages of using zeromq to transfer files? 
Post by ashwini ramamurthy
How are large files transferred in zeromq and how would it be better than
using HTTP?

Have you checked the ZGuide?

http://zguide.zeromq.org/page:all

There is section discussing file transfers:

http://zguide.zeromq.org/page:all#Transferring-Files

It seems a really decent starting point. Other chapters of this guide might
allow you to answer your questions.

Best regards,
Lukasz Nowak

PS. Greetings from the rainy-beery city :)
Shaukat Mahmood Ahmad
2013-06-30 16:46:44 UTC
Permalink
Do you want to use zeroMQ over http, if so there is no easy way to do
it (communicate) over http. However over other transports like tcp and
ipc zeroMQ is best solution.
Post by Lukasz Nowak
Hello,
Post by ashwini ramamurthy
Hi,
I want to send a xml file from the client to the server using zeromq . I
was previously using HTTP PUT. I went through the zeromq discussion list but
could not find many discussions on file transfer.My question is :what are
the advantages of using zeromq to transfer files?
Post by ashwini ramamurthy
How are large files transferred in zeromq and how would it be better than
using HTTP?
Have you checked the ZGuide?
http://zguide.zeromq.org/page:all
http://zguide.zeromq.org/page:all#Transferring-Files
It seems a really decent starting point. Other chapters of this guide might
allow you to answer your questions.
Best regards,
Lukasz Nowak
PS. Greetings from the rainy-beery city :)
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
Ashwini
2013-06-30 17:39:33 UTC
Permalink
Hi,

Yea,I want to Send files over tcp. I am Still trying to figure out how to go about it . I have an android application and want to send xml files from the app to the server . To send the files I want to use zeromq.

Thanks,
Ashwini
Post by Shaukat Mahmood Ahmad
Do you want to use zeroMQ over http, if so there is no easy way to do
it (communicate) over http. However over other transports like tcp and
ipc zeroMQ is best solution.
Post by Lukasz Nowak
Hello,
Post by ashwini ramamurthy
Hi,
I want to send a xml file from the client to the server using zeromq . I
was previously using HTTP PUT. I went through the zeromq discussion list but
could not find many discussions on file transfer.My question is :what are
the advantages of using zeromq to transfer files?
Post by ashwini ramamurthy
How are large files transferred in zeromq and how would it be better than
using HTTP?
Have you checked the ZGuide?
http://zguide.zeromq.org/page:all
http://zguide.zeromq.org/page:all#Transferring-Files
It seems a really decent starting point. Other chapters of this guide might
allow you to answer your questions.
Best regards,
Lukasz Nowak
PS. Greetings from the rainy-beery city :)
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
Pieter Hintjens
2013-06-30 21:13:45 UTC
Permalink
Depends how much you can use experimental code. Libzmq master has
encryption now, and you could use filemq over that. It would need a little
work to set up crypto keys.

Pieter
Post by Ashwini
Hi,
Yea,I want to Send files over tcp. I am Still trying to figure out how to
go about it . I have an android application and want to send xml files from
the app to the server . To send the files I want to use zeromq.
Thanks,
Ashwini
Post by Shaukat Mahmood Ahmad
Do you want to use zeroMQ over http, if so there is no easy way to do
it (communicate) over http. However over other transports like tcp and
ipc zeroMQ is best solution.
Post by Lukasz Nowak
Hello,
Post by ashwini ramamurthy
Hi,
I want to send a xml file from the client to the server using zeromq .
I
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
was previously using HTTP PUT. I went through the zeromq discussion
list but
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
could not find many discussions on file transfer.My question is :what
are
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
the advantages of using zeromq to transfer files?
Post by ashwini ramamurthy
How are large files transferred in zeromq and how would it be better
than
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
using HTTP?
Have you checked the ZGuide?
http://zguide.zeromq.org/page:all
http://zguide.zeromq.org/page:all#Transferring-Files
It seems a really decent starting point. Other chapters of this guide
might
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
allow you to answer your questions.
Best regards,
Lukasz Nowak
PS. Greetings from the rainy-beery city :)
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
ashwini ramamurthy
2013-06-30 21:56:51 UTC
Permalink
I'm pretty new to zeromq , i need to research more and learn more .From
where can i get more information about libzmq? and how i would use it over
filemq?

Thanks,
Ashwini
Post by Pieter Hintjens
Depends how much you can use experimental code. Libzmq master has
encryption now, and you could use filemq over that. It would need a little
work to set up crypto keys.
Pieter
Post by Ashwini
Hi,
Yea,I want to Send files over tcp. I am Still trying to figure out how to
go about it . I have an android application and want to send xml files from
the app to the server . To send the files I want to use zeromq.
Thanks,
Ashwini
Post by Shaukat Mahmood Ahmad
Do you want to use zeroMQ over http, if so there is no easy way to do
it (communicate) over http. However over other transports like tcp and
ipc zeroMQ is best solution.
Post by Lukasz Nowak
Hello,
Post by ashwini ramamurthy
Hi,
I want to send a xml file from the client to the server using zeromq
. I
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
was previously using HTTP PUT. I went through the zeromq discussion
list but
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
could not find many discussions on file transfer.My question is :what
are
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
the advantages of using zeromq to transfer files?
Post by ashwini ramamurthy
How are large files transferred in zeromq and how would it be better
than
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
using HTTP?
Have you checked the ZGuide?
http://zguide.zeromq.org/page:all
http://zguide.zeromq.org/page:all#Transferring-Files
It seems a really decent starting point. Other chapters of this guide
might
Post by Shaukat Mahmood Ahmad
Post by Lukasz Nowak
allow you to answer your questions.
Best regards,
Lukasz Nowak
PS. Greetings from the rainy-beery city :)
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
_______________________________________________
zeromq-dev mailing list
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
Loading...