I am implementing java web application using JSP/Servlet. I have another standalone application on another machine.
When users of web application do something, I want to control / communicate with standalone application accordingly.
What are best ways to control / communicate with standalone application from web application deployed in tomcat?
One more thing, I do not want to use database things. Using database I want to avoid polling database from standalone application.
Thanks