-
Weservice to send bulk file (2 messages)
- Posted by: Vinod Sasi
- Posted on: July 14 2008 07:40 EDT
Hi all i am new to this forum and Java community. I was working in .Net and now i am into a java project. We want to create a server application in java to send bulk files to different location. A file allocation serer which has to handle files having size up to 512 MB of size and every day an average of 1500 files. We have an application developed in windows technology, a TCP/IP server created using Socket. We have two options in Java, we have to go for Socket programing or we have to go for web services to transfer these bulk files. We have stuck here and want suggestions from gurus :-). Which method will suit our requirement. Web service or creating our own TCP/IP client server application with our own protocol with resume support.Threaded Messages (2)
- Re: Weservice to send bulk file by Manuel Passerini on July 16 2008 03:00 EDT
- Re Post: Weservice to send bulk file in include by Vinod Sasi on July 16 2008 04:02 EDT
-
Re: Weservice to send bulk file[ Go to top ]
- Posted by: Manuel Passerini
- Posted on: July 16 2008 03:00 EDT
- in response to Vinod Sasi
webservice not recommend, that's just too much overhead you mave have a look for open source tools: http://sourceforge.net/projects/fileboard/ <- you may can extend this one ;) to write your own sockets would be cool, but i'm pretty sure, someone did it already ;) -
Re Post: Weservice to send bulk file in include[ Go to top ]
- Posted by: Vinod Sasi
- Posted on: July 16 2008 04:02 EDT
- in response to Manuel Passerini
First of all let me than you for the reply Manuel. can you tell me how its overhead. I have heard a lot of servers using web service for file transfer.