Re: definitive answer on JSPC?

2003-02-05 Thread Chris McNeilly
Don't know how 'definitive' this is, but here are my experiences. Its a bug/feature of jspc, depending on how you look at it. As it loads all relevant jsp files into memory to compile, it only used the file name, not the full path, making the compiler see all your index.jsps as the same, which

RE: JDBC Driver for sql server 2000

2001-08-23 Thread Chris McNeilly
I can vouch for FreeTDS as well. We've had no problems with it. -Original Message- From: Jim Urban [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 23, 2001 4:23 PM To: [EMAIL PROTECTED] Subject: RE: JDBC Driver for sql server 2000 FreeTDS is free and it works fine.

RE: JDBC Driver for sql server 2000

2001-08-23 Thread Chris McNeilly
that matters... Jon - Original Message - From: Chris McNeilly [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 3:25 PM Subject: RE: JDBC Driver for sql server 2000 I can vouch for FreeTDS as well. We've had no problems with it. -Original Message

RE: help please!

2001-07-24 Thread Chris McNeilly
Aaron, Are you running apache/tomcat on your PC? We had this problem before and it turned out to be a case problem on the directories. The PC ignores case while UNIX is case-sensitive. We had Web-Inf instead of WEB-INF. Chris -Original Message- From: Aaron Cooper [mailto:[EMAIL

RE: help please!

2001-07-24 Thread Chris McNeilly
I'm going to take another shot at it ;-) Check your JkMounts and make sure that there are some for /baseball. mod_jk.conf-auto or whatever you changed it to. Chris -Original Message- From: Aaron Cooper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 3:37 PM To: [EMAIL

RE: Tomcat 3.2.2 and Xerces

2001-06-19 Thread Chris McNeilly
Sorry. Asleep at the wheel. I didn't see this earlier. The problem is that Tomcat uses a different xml parser than xerces and there is a version conflict of some sort that I knew back when I had the problem but have since forgotten. To fix, the easiest way is to modify the tomcat.bat or

Re: JDBC drivers for SQL server

2001-06-10 Thread Chris McNeilly
We're using freetds (http://www.freetds.org) which is an open source JDBC driver for SQL Server. We've been running with it for a month and only had one problem (jdbc realm wasn't working) that got cleared up by some supportive folks on their mailing list. Chris Alexandre Bouchard wrote:

JDBCRealm NullPointerException error

2001-06-05 Thread Chris McNeilly
My JDBC driver is blowing up with a NullPointerException error as soon as it tries authenticating. This is even before my login page gets called. It looks like its trying to authenticate username=null and password=null. Not sure what to do. Any ideas? Thanks, Chris

RE: Src.jar and Classpath

2001-06-01 Thread Chris McNeilly
I modify my autoexec.bat. On Win98, you'll probably have to reboot to have it take effect. set classpath=.;C:\jdk1.3.0_02\lib\tools.jar ... Chris -Original Message- From: Kotsari Aspasia [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 8:51 AM To: '[EMAIL PROTECTED]'

RE: Re: How to debug a missing servlet error?

2001-06-01 Thread Chris McNeilly
I removed the servlet-mapping and still no luck. This is really odd. Is there any way to see where Tomcat is actually looking for the class? Chris -Original Message- From: Chris McNeilly [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 6:54 PM To: [EMAIL PROTECTED] Subject

RE: Servlets and relative paths

2001-06-01 Thread Chris McNeilly
ceAsStream()) and is a pain to maintain if you move your context. The other ugly option being chucking the includes into the bin directory, but that defeats the purpose of separating contexts. Charlie -Original Message----- From: Chris McNeilly [mailto:[EMAIL PROTECTED]] Sent:

RE: Servlets and relative paths

2001-06-01 Thread Chris McNeilly
Message- From: Chris McNeilly [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 2:18 PM To: [EMAIL PROTECTED] Subject: RE: Servlets and relative paths That's eventually what I did. I now have two top xsl pages, one includes with fully qualified urls and the other uses the relative

How to debug a missing servlet error?

2001-05-31 Thread Chris McNeilly
Hi, I have a development environment that works correctly (Win 98), but when I move the code over to my QA environment (Linux) tomcat can no longer find the servlet. I have a web.xml file in the Web-Inf directory that has the following: web-app servlet servlet-name

RE: How to debug a missing servlet error?

2001-05-31 Thread Chris McNeilly
can get along just fine without it. (Remember that this is a server-wide setting). Randy -Original Message- From: Chris McNeilly [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 4:15 PM To: [EMAIL PROTECTED] Subject: How to debug a missing servlet error? Hi

RE: Re: Servlets and relative paths

2001-05-30 Thread Chris McNeilly
, not the servlet context). Any ideas? Thanks, Chris Chris McNeilly wrote: I've got a servlet and am trying to open files. The problem is that its defaulting to the tomcat/bin directory whenever I attempt to refer to them. How can I change this? Hardcoding the path isn't such a good idea

RE: Servlets and relative paths

2001-05-30 Thread Chris McNeilly
: Servlets and relative paths Chris McNeilly wrote: Thanks Bo. This is certainly a step in the right direction. I can now include the xml file and xsl file using relative paths. My only problem now is that there are xsl includes inside the xsl files and they are still being loaded

RE: xalan ApplyXSL sample servlet fails

2001-05-29 Thread Chris McNeilly
Funny you should ask. I had (possibly) a very similar problem last week. After combing through maillists etc, I found a reference suggesting that there was a conflict with the xerces xml parser and the xml parser included with tomcat. It suggested removing parser.jar and jaxp.jar from the

mod_jk and mod_rewrite? Do they work together?

2001-04-30 Thread Chris McNeilly
Does anyone have an answer to this question? I'm attempting to map my root web directory to a particular jsp page. For example, I would like the URL www.byteme.com to resolve to www.byteme.com/context1/jsp/index.jsp Any ideas? Thanks, Chris