-1

I need to connect two System which are hosting in differents machines. One of them is coded in Java and the other in C++. The systems have to send files in both directions.

Some requeriments: - Size File: More than 20MB

Some Possibilities: WebService, Corba, NFS, ...

Any Suggestion? Example?

Roman C
  • 48,723
  • 33
  • 63
  • 158
Javi Pedrera
  • 2,055
  • 4
  • 19
  • 29

2 Answers2

1

Webservice with MTOM. Axis C is a good WS implementation on the c/c++ side that supports MTOM.

user18428
  • 1,226
  • 11
  • 17
1

Try hosting a FTP Server and try send recieve files via FTP file transfers

For FTP file transfer in C++ refer a previous post Designing a file transfer protocol in c++

For Java FTP file transfer refer... How to transfer a file from url to ftp using java?

If you intend to use web service for file transfer This IBM blog should help

Community
  • 1
  • 1
AurA
  • 11,845
  • 7
  • 47
  • 63
  • The IBM blog post describe the use of base64 attachments. This may bloat your messages compared to MTOM. Read a comparison of the 2 techs here : http://www.keith-chapman.org/2008/09/attachments-mtom-swa-and-base64binary.html – user18428 Mar 15 '13 at 08:36
  • @user1654209 thanks I did not know ... I have not used MTOM but looks like I should give it a try. – AurA Mar 15 '13 at 09:17