I have a Java application that is executed from a perl script on Windows. The perl script is called from another application and given XML messages and expects XML responses. The high level architecture (napkin style) is as follows:
--------------- --------------- ------------
- Windows App - XML --> - perl script - STDOUT --> - Java App -
--------------- XML <-- --------------- STDIN <-- ------------
I have control over the perl script and Java application. I would like to keep the Java application running while processing XML commands and building XML responses. I am considering using procrun and setting up the interprocess communication over sockets perhaps. Before I get into this, I was wondering if modifying the Java application to run on a web server like Tomcat would be overkill or appropriate in this situation?