How do I send an image to a server for post-processing? From server to client is easy, but when it comes to the opposite, which is the best way to proceed?
A:
You don't terminate the connection, but send the processed image through the outputstream of the connection on the server side.
Jes
2010-08-27 11:16:56
A:
I would use FTP. Use Apache FTP libraries.
Client side: Jakarta commons net: http://commons.apache.org/net/
Server side: Apache FTP Server: http://mina.apache.org/ftpserver/
Andrew Dyster
2010-09-01 03:38:59