SOLUTION!! -- Cannot load JDBC driver class 'null'

2003-09-19 Thread SANTOS, DANIEL (SBCSI)
Using Sun JDK 1.4.1_02 on Win2k SP2 and Jakarta 4.1.27. The tutorial in the tomcat docs failed for me also with the Cannot load JDBC driver class 'null'. I banged my head and had to get stitches and an ice pack. After that I came back to the office and cleaned out my server.xml and web.xml complet

RE: DataSource.getConnection() hangs

2003-09-20 Thread SANTOS, DANIEL (SBCSI)
org.apache.jasper.JasperException: Exception retrieving attribute 'driverClassName' is caused from an unrelated error in your server.xml. I fixed the problem with this error not reporting correctly but I just submitted it to be added to CVS. The root cause exception is not being returned currently

RE: How to use oracle pool instead of using DBCP pool?

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
I use a method similar to this as well. I don't use a servlet listener however. I use a javax.servlet.ServletContextListener instead however. I store the jdbd url in my web.xml also as a context-param (I just just cram it all into one paramater however) and put the pool as an attribute of the

PDF File on Documentation Web Site Corrupted?

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
When attempting to view a PDF on the Tomcat Architecture at http://jakarta.apache.org/tomcat/tomcat-5.0-doc/architecture/requestProc ess/requestProcess.pdf I get errors in Acrobat Reader. Same thing for http://jakarta.apache.org/tomcat/tomcat-5.0-doc/architecture/startup/ser verStartup.pdf. Does

RE: How to use oracle pool instead of using DBCP pool?

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
taweb user2 usename2 senha2 pass2 host2 hostname2 sid2 adm SANTOS, DANIEL (SBCSI) wrote: > I use a method similar to this as well. I don't use a servlet listener however. I > use a javax.servlet.ServletContext

RE: Fresh install of 5.0.25 running but not responding

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
I just looked at your link. Since your tutorial says to set the domain name I imagine that that's just what you did. If you did so, you wont be able to get to it with the address "localhost". I'm not sure, but I'm thinking that you can omit the name attribute of the tag and Tomcat will listen o

RE: Fresh install of 5.0.25 running but not responding

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
Actually, all machines have 127.0.0.1 with the name of "localhost" unless they are alternately configured. So if you have a network card or PPP connection they will have an IP address and you will still have "localhost". So you can actually configure Tomcat to only listen on localhost if you chos

RE: Understanding Java -- I've officially decided that JSTL is one of the worst thingsto ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
Absolutely, it's important to understand Java and the dynamic compiler. This study (the pdf linked below) may sound like propaganda, but dynamic compilation does offer the ability to run faster than static compilation, although it's usually not the case and is dependant on what specifically you are

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
If this is the case then I ask you why Java has been the number one programming language for 4 years now? As was recognized long ago, performance is not everything. And in fact, means little when you can't get your product out the door because you are still trying to chase down memory leaks, b

RE: I've officially decided that JSTL is one of the worst things to ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
> There are a lot of java classes that return nulls as > part of normal operation. For instance - sets. > Set.get(someobj) returns null if object is not there. And > when you do ${my.set.blah.wee} and "blah" wasn't found, and > you get some crazy EL error, you'll remember my words. Th

RE: some problem in tomcat 5.0.25

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
Forgive the simplicity of my question, but how large is the JSP file? -Original Message- From: archana gupta [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 9:39 AM To: [EMAIL PROTECTED] Subject: some problem in tomcat 5.0.25 Hi , I have deployed an application on Tomcat 5.0.1

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
> > > > If this is the case then I ask you why Java has been the number one > > programming language for 4 years now? > Source of this statistic? > I assumed that this was fairly common knowledge. I remember when it surpassed C++ in Febuary of 2000 (I thought at the time in development

RE: I've officially decided that JSTL is one of the worst things to ever happen to mankind

2004-07-08 Thread SANTOS, DANIEL (SBCSI)
> > Why was C++ invented? To give programmers jobs. No other reason > whatsoever, C does whatever C++ does just as good, and better. > > At that point, you just showed to be very closed-minded. > (C++ does have an accurate object model, which improves a > lot. Yes, you can > do similar things

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-08 Thread SANTOS, DANIEL (SBCSI)
please give me absolutely NO sign. However, if EL is a great thing and should be used by everyone, please give me a sign". I'll report to you in the morning and let you know what was God's opinion on that. > -Original Message- > From: SANTOS, DANIEL (SBCSI) [mailto:[E

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-08 Thread SANTOS, DANIEL (SBCSI)
d that JSTL is one of the worstthingsto > ever happen > > > Ok let's settle this argument simple. > > Tonight, I'll ask my Christian Science friend to talk to Jesus, and ask > him the following: > > "Jesus, if EL really DOES decrease performance significant

RE: adding root context with admin webapp

2004-08-26 Thread SANTOS, DANIEL \(SBCSI\)
Example: Also, I use deployOnStartup="false" in my . Keep in mind that this used to be called autoDeploy and due to some left-over stuff the setting "autoDeploy" still pops up in the if you use the admin interface (I just keep both of them in there). This setting (autoDeploy/deployOnStartup)

RE: Out of Memory when compiling JSP (Struts app on Tomcat 4.1.27)

2005-01-06 Thread SANTOS, DANIEL \(SBCSI\)
Chachany, It sounds like it's using the default of -Xmx64m. Probably the best way to troubleshoot out or memory errors is to see what is really happening with garbage collecting, the same way that you tune it. If you can add these options, then the JVM will spit out all kinds of useful informati

RE: Tomcat behind IIS

2005-03-18 Thread SANTOS, DANIEL \(SBCSI\)
sure, just go into your server.xml and remove the web connector I'm using the minimal server.xml (slightly modified) so there may be more parameters in yours. This element is contained with in the tag which is in the tag. Daniel -Original Message- From: VAN DER MARLIERE FREDERIC