I need to Transfer some files from one server to another, using java, and my performance is my top priority, which of these three options should be the right choice for me.
|
|
My 2 cents:
To conclude: it depends, I'd look at SOAP + MTOM first and do some tests. You may also consider the "not so hip" protocols like FTP, SFTP, FTPS. If you require guaranteed delivery you may want to look at Managed File Transfer (MFT) concepts: http://en.wikipedia.org/wiki/Managed_file_transfer |
|||
|
|
|
Using SOAP will, i think, involve base64-encoding the data, which will inflate it considerably - by 33%! I don't think RMI base64 encodes, so that and a REST transfer with a binary body will be roughly equally efficient. REST uses HTTP, which is a protocol whose implementations have been heavily tuned and thoroughly tested for transferring large files. JRMP and IIOP, the protocols used for RMI, are usually used with smaller requests, and so have not had that tuning. Therefore, i would lean towards using HTTP rather than JRMP or IIOP for this, and so towards using a REST PUT rather than RMI. I would guess that the difference between RMI and HTTP would be small, though. However, and above all, nothing beats a benchmark. I urge you to do a quick test of transferring a large file with all three options, and measure the speed. |
||||
|
|
|
I think
|
|||
|
|
|
When you talk about EJB, I assume you're actually referring to RMI (Remote Method Invocation) . It uses object serialization. If it is an option for your application, this is the best way to go. With SOAP you have the overhead of the XML creation / parsing (computation wise). You also have the code headache of translating XML to/from your objects. With REST, it ends up being the same issue as SOAP. However, this is the direction everyone seems to be going for most public APIs. |
|||
|
|