Hello everyone, I have a couple of questions regarding using PHP and Java. First some background.
My company is currently switching to Oracle for our database system. In the process of switching we are having to rewrite most of our web based software. Since we are doing this we have decided we want to start using Java DAOs because so many tools already exist for managing Java DAOs. I know we can access Java objects in PHP by $foo = New Java('class') but the object is destroyed at the end of the page request, creating overhead and elimnating some of the benifit of using Java DAOs. My question is this:
Is there any way to have the Java object continue running in the background even after the request has terminated? Then how would the next execution of of the page access the object?
Hopefully you can understand my question and provide some useful responses.
--Bryan