Page 1 of 1

PHP, ASP, JSP all in httpd Apache

Posted: Sun Jan 18, 2004 6:57 am
by anjanesh
Is is possible to run out JSP pages in httpd Apache ? Or is it ABSOLUTELY necessary that Jakarta Apache is required ?
I already have httpd Apache and am running PHP. I want it to run ASP and JSP too ? Possible ?
Thanks

Posted: Sun Jan 18, 2004 10:37 am
by mikusan
Perhaps this is not what you would like to hear, but for whatever reason you have to do the above, there must be a way to avoid it.

I always first try to reason the problem out, and find the best solution.

I would almost always choose PHP (Not always) Because i am simply better at it. But if you are familiar with JSP Then you should easily be able to port most of your code to php.

ASP, well... good luck...

I am sorry if this is not what you were expecting. But in the long run, if you keep switching between multiple languages, you will run into very big problems, let alone security related ones, and upgarability.

Re: PHP, ASP, JSP all in httpd Apache

Posted: Mon Jan 19, 2004 4:36 am
by twigletmac
anjanesh wrote:Is is possible to run out JSP pages in httpd Apache ? Or is it ABSOLUTELY necessary that Jakarta Apache is required ?
You need to have something that understands Java in order to run JSP pages - Apache the webserver has no such understanding (it doesn't understand PHP either BTW).
anjanesh wrote:I already have httpd Apache and am running PHP. I want it to run ASP and JSP too ? Possible ?
JSP you can do (but not without Tomcat AFAIK). ASP - you can try but you have to pay for the technology to parse the pages and it's not the same as using it on IIS.

Mac