CGIServlet - php

2011-09-02 Thread throwsCode
Hi all: I'm trying to implement PHP on tomcat 7.0.20 with no luck. Does anyone know how I can tell whether the CGIServlet is running? I uncommented all of the sections indicated in the Tomcat document. Though I think I am making the right call, I am receiving a 400 error. CALL made form fil

Re: CGIServlet - php

2011-09-02 Thread throwsCode
Hi all: An update I entered the following directly into my browser: http://localhost:8080/secondDynamicWeb/cgi-bin/echoInfo.php And got the a 404 Error - Servlet CGI not available. >From this it appears that the servlet is not available but has been defined because the URL pattern /cg

Re: CGIServlet - php

2011-09-02 Thread throwsCode
Hi Hassan: I am predominantly a JSF/Facelets/IceFaces developer but recently I have been asked to assist some non-profits which calls for php. I would like to use my existing development environment which is Eclipse and Tomcat. If I can discover the secrets to php in Tomcat that would be the be

Re: CGIServlet - php

2011-09-03 Thread throwsCode
Thanks Hassan: I could use all the luck I can get. I was on NetBeans a couple years back but had to bail when they pretty much abandoned web developers. Oracle put the nail in the coffin but it all began with the killing of Woodstock and the Visual Development Environment and that is on Sun.

Re: CGIServlet - php

2011-09-03 Thread throwsCode
Wow thanks Konstantin a lot of good questions and suggestions. Please give me some time to put together a cogent reply. I have looked at hundreds of documents and thousands of Internet pages so it will take me some time to filter the ones that I thought applied and actually tried. With regard t

Re: CGIServlet - php

2011-09-03 Thread throwsCode
Terence, Ken, Mark thanks for all your input. Much to consider. Mark your the first person who replied who sounds like they have actually run php and tomcat. Despite your concerns, this gives me the confidence that i can get it running with all this help. Perhaps I'm wrong but I don't think at

Re: CGIServlet - php

2011-09-04 Thread throwsCode
Thanks Mark: If I'm reading this right you did in a couple hours what I have been working on for eight days. FM! Retracing my steps is proving difficult, so many paths taken and abandoned. Thanks for demonstrating one definitive solution. TC -- View this message in context: http://old.nabbl

JULI prefix not recognized?

2011-06-22 Thread throwsCode
Hi all; I sure that is going to turnout to be a stupid question but I've played with it for two days and made no progress. I can create a JULI handler as long as I don't apply a prefix, here is the logging.properties file (keeping it as simple as possible): THIS WORKS FINE

Re: JULI prefix not recognized?

2011-06-22 Thread throwsCode
Thanks Konstantin: I thought the JULI Classes automatically replaced the java.util.logging Classes with the same name. Thanks for catching that, I'll checkout catalina.sh and try to figure this out. TC throwsCode wrote: > > Hi all; > > I sure that is going to turno

Re: JULI prefix not recognized?

2011-06-23 Thread throwsCode
clients that on occassion share VMs with other Tomcat Servers. Is there a way to do the same without the Runtime Argument? Thanks much. TC Konstantin Kolinko wrote: > > 2011/6/23 throwsCode : >> >> I sure that is going to turnout to be a stupid question but I've playe

Re: JULI prefix not recognized?

2011-06-23 Thread throwsCode
> > 2011/6/24 throwsCode : >> >> Hi Konstantin: >> >> I added the following argument to the Apache Tomcat Server Run >> Configuration: >> >> -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager >> >> It worked just as you su