We have php setup for our HTTPS protected web pages. The web application is talking to the database, but we also want it to talk to the java server that we have.
java server is a standalone Java application (not a web application). We just want to execute a callback after the PHP page has finished writing to the database executed on the java server. What is a good way for this php page to talk to a java program to do something?
source
share