I need my Play! application to accept http POST from other server.
Is there some simple way how to manage external http post, get data and sent response?
Some easy http request listener?
Thanks
I need my Play! application to accept http POST from other server. Is there
Share
You could say nearly ALL http requests come from a remote source, so this is how Play and all HTTP based containers works by default!
However, to offer some advice, as you are sharing data between servers, and not a client-browser, I would check out
renderXmlandrenderJSONin your controllers to return data in a way that your server will expect (as it is unlikely to be expecting HTML content??).