Re: Something other than localhost on OS X

2007-07-26 Thread Larry Meadors
Why not just add that host name in /etc/hosts? Larry On 7/24/07, Colin H [EMAIL PROTECTED] wrote: Hi, I am trying to do something that I figure should be pretty simple - accessing my tomcat container from something other than localhost. So far as I can tell, I should be adding a Host/

Re: 30 Mb of common jars in each of 5 war files, should i consolidate?

2007-06-07 Thread Larry Meadors
I think you'd be better off spending your time (== money) on CPU, RAM, and disk space than doing this. It's one of those ideas that looks good on paper, but sucks in practice. Larry On 6/7/07, rhodebump [EMAIL PROTECTED] wrote: I have 5 war files, each containing the springframework,

Re: WebApp really slow, Where do I start looking?

2007-06-01 Thread Larry Meadors
Are the database and the tomcat server on the same machine? Can you explain a little more about your synchronized code? I have done several really big web apps with iBATIS, and haven't needed to sync anything... Larry On 6/1/07, Stéphane Hanser [EMAIL PROTECTED] wrote: You are right about

Re: Tomcat5.5 is not starting on CENTOS 4

2007-05-14 Thread Larry Meadors
Try catalina.sh run and see if you get some more info. Also make sure that all of those directories exist and that you have adequate rights to them. Larry On 5/14/07, reym [EMAIL PROTECTED] wrote: Hi All, I have installed Tomcat5.5 on CENTOS 4, which is located on a remote machine, and I

Re: problem switching to port 80

2007-04-25 Thread Larry Meadors
Looks like something else is listening on port 80. Is IIS running? Larry On 4/25/07, John Pedersen [EMAIL PROTECTED] wrote: Hi, I have an app running fine on port 8080, but nothing works when I switch to port 80 - in server.xml, changing: Connector port=8080 protocol=HTTP/1.1

Re: Cannot get a connection, pool exhausted

2007-04-23 Thread Larry Meadors
Simple question - are there more than 100 requests active when this happens? Larry On 4/21/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Now instead of set connection static i just create a new one for each query to perform, so if there are concurrent queries it shouldn't cause any problem:

Re: Apache with Windows 98

2006-10-26 Thread Larry Meadors
Dude, that is just sick and wrong. Larry On 10/26/06, Eric [EMAIL PROTECTED] wrote: is it possible to run apache 3.3 and 4.1 in windows 98? if so, can you please teach me on how to configure it to run in windows 98 platform? thanks.

Re: run php jsp on the same server

2006-10-16 Thread Larry Meadors
Why not just run resin with quercus? Works pretty much outta the box. Larry On 10/16/06, Steve Ochani [EMAIL PROTECTED] wrote: On 16 Oct 2006 at 16:12, Christopher Schultz wrote: I seem to recall some hack to get PHP actually running /inside/ Tomcat. Am I smoking crack, or was that real?

Re: run php jsp on the same server

2006-10-16 Thread Larry Meadors
OK, pay one way (with cash) or another (with time)...which can you make more of? :-) Larry On 10/16/06, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Larry Meadors Subject: Re: run php jsp on the same server Why not just

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Larry Meadors
I was a Hibernate (2.x) user before finding out about iBATIS. Hibernate has it's place, but for high-performance, nothing beats iBATIS and hand-written SQL. It is certainly worth your time to look into. Larry On 7/29/06, Phil (waex) [EMAIL PROTECTED] wrote: Hi, Sorry for if this question is

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Larry Meadors
I almost agree, but one point of clarification: iBATIS is not ORM, which is a way to map tables and views to Java beans. iBATIS is SQL mapping, and there are a few key differences. First and foremost is that you can map from anything to anything. Not just tables and views to beans, but also

Re: tomcat , wondoze , Unable to find a javac compiler;

2006-07-27 Thread Larry Meadors
Might be the space... Larry On 7/27/06, Randy Paries [EMAIL PROTECTED] wrote: unfortuntaly i have to setup tomcat on windoze. i have it working on tons of linux boxs, and this has been a royle pain. Ok enough whinning. so when i try to display a jsp is get the error Unable to find a javac

Re: Tomcat Installation Trouble

2006-06-12 Thread Larry Meadors
When I click on that link, I get an error that looks nothing like a tomcat error - something else is running on port 8080, so you have 2 options: 1) Edit $CATALINA_HOME/conf/server.xml to run on another port -or- 2) Kill (or reconfigure) the other app listening on port 8080 Larry On

Re: need inputs on connection pool

2006-04-05 Thread Larry Meadors
Calling close() on a pooled connection simply returns it to the pool, however, i have seen some cases where calling ti twice closes it for real. Don't do that. If you are interested in other options that eliminate that concern, you may want to try iBATIS - you would still use SQL, but it manages

Re: tools.jar not in CP (Tomcat 5.5.15)

2006-04-01 Thread Larry Meadors
Sounds like you may have a JRE instead of a JDK. From a command like do: cd $JAVA_HOME find -iname javac You should see one listed as './bin/javac' after running that second command. Larry On 4/1/06, Martin Schulz [EMAIL PROTECTED] wrote: My webapps needs to access the javac compiler

Re: shared/lib problem

2006-03-11 Thread Larry Meadors
Unless you *HAVE* to put jars in common/lib or shared/lib, don't. You'll save a few bytes of disk space, but waste more time on goofy classloding crap (like this) that will end up costing you more than added disk space would. Larry On 3/10/06, Iratxe Etxeberria Sainz-Ezquerra [EMAIL PROTECTED]

Re: starting tomcat with opts - FC4

2006-02-19 Thread Larry Meadors
I would think $CATALINA_HOME/bin/setenv.sh - it is an optional file, and gets called by $CATALINA_HOME/bin/catalina.sh (in the standard tomcat distribution). Larry On 2/19/06, kevin [EMAIL PROTECTED] wrote: Where is the best place of RHFC5 to add the code to start tomcat5 with

Re: How to get Novell Id in Tomcat/Java

2006-01-09 Thread Larry Meadors
You can't unless they have authenticated to the web app, you do not know who they are. So, which is it then: We are not doing any kind of authentication since this is running on the Intranet and all employees have access to this application. or Oracle 9i DB User authenication? I am confused...

Re: Tomcat suddenly not working

2005-11-29 Thread Larry Meadors
Have you cleared the tomcat work directory? LArry On 11/29/05, Bachler, Elisabeth (Elisabeth) [EMAIL PROTECTED] wrote: I just had a look in the catalina.out and I have an error with log4j: log4j:WARN Failed to set property [maxBackupIndex] to value 10 // Keep 10 backup file maximum. and

Re: Tracking

2005-10-25 Thread Larry Meadors
Man, this feels like telling someone how to shoot their foot off, but this would be shorter: new Exception().printStackTrace(); Larry On 10/25/05, Steve Stearns [EMAIL PROTECTED] wrote: Charles P. Killmer wrote: I have a bunch of JSP files that all instantiate a single class file. Is