tags:

views:

52

answers:

2

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
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