Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
you mean when the server has to send it back? – Aif Aug 27 '10 at 11:00
3  
What kind of server? – Thorbjørn Ravn Andersen Aug 27 '10 at 11:26
Yeah, what kind of client/server? HTTP? plain sockets? – rompetroll Aug 27 '10 at 12:01

2 Answers

up vote 0 down vote accepted

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/

share|improve this answer

You don't terminate the connection, but send the processed image through the outputstream of the connection on the server side.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.