Re: [Resin-interest] Quercus Question

2010-08-24 Thread Mattias Jiderhamn
PHP include() resembles the JSP include directive <%...@include file="foo.jsp" %> which includes the referenced file assuming it contains source code that should also be parsed/compiled together with the current script. See http://www.php.net/manual/en/function.include.php What you want is the PH

Re: [Resin-interest] Quercus Question

2010-08-12 Thread Kevin Decherf
Hi, I take advantage of the situation about this email to ask Caucho's team if we are allowed to fork the project [Quercus] on GitHub to make our own changes/bug fixes. The project seems to run slowly (*as looked on the bug report*) and we are making some improvements for a production environment

Re: [Resin-interest] Quercus Question

2010-08-12 Thread Aaron Freeman
The silence is deafening, so I guess I was completely wrong-headed in thinking you could call a .jsp as in include from a .php? Bummer, I was hoping that was part of the benefit of having php-based apps running under full blown Resin, instead of Quercus in stand alone mode. Thanks, Aaron On

[Resin-interest] Quercus Question

2010-08-11 Thread Aaron Freeman
I was thinking it's possible to do something like this in a php file: Where the www folder has a path-mapping entry in the resin.xml. It includes the file, but the file isn't processed by the JSP engine, so I literally see strings like "${param.var}" in the output of the call to test.php. Ho