Is there a solution out there that can help on that? basically I want to build a Java app that could start a http server on a separate thread such that a local running app could call to this Java app by making HTTP calls.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could embed Jetty into your Java app to run an HTTP server. It's also possible with Tomcat however it's more involved, see Howto embed Tomcat 6? |
|||
|
|
|
Take a look at NanoHTTPD. It is written in one single Java file, with no external dependencies, and is very easy to embed. |
|||
|
|
appsto communicate using HTTP, or twothreads? could you be more clear?...maybe provide some code? – mre May 27 '11 at 23:51