I hava a situation.
I have one .war file say APP-1 which expose SOAP service for ex. getAccountTxn and I have another .war file say APP-2 which consume this web service.
Now I want to create one more .war file say APP-3 which expose REST webservice which can be consumed by any client. I want to deploy APP-2 & APP-3 on the same server (i.e. Apache Tomcat).
Now the question is
"How can I access getAcccountTxn from APP-3 and consider APP-2 doesn't expose any web API?" or
"How to call APP-2 from APP-3 without any web API?".
Replies are Appreciated.