Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread Chris Wareham
. Chris -- Chris Wareham Senior Software Engineer Visit London Ltd 6th floor, 2 More London Riverside, London SE1 2RR Tel: +44 (0)20 7234 5848 Fax: +44 (0)20 7234 5753 www.visitlondon.com 'Visit London Limited' is registered in England under No.761149; Registered Office: Visit London, 2

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread Chris Wareham
To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Chris Wareham Senior Software Engineer Visit London Ltd 6th floor, 2 More London Riverside, London SE1 2RR Tel: +44 (0)20 7234 5848 Fax: +44 (0)20 7234 5753 www.visitlondon.com 'Visit London

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread Chris Wareham
André Warnier wrote: Chris Wareham wrote: David Goodenough wrote: The reason was that Tomcat did not serve the Flash correctly, never did manage to get to the bottom of why but the browser did not complain - it just left big blank spaces. With this setup at least that bit works. David My

Re: jvm cowardly refuses to print a thread dump

2008-12-03 Thread Chris Wareham
@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] _ You live life online. So we put Windows on the web. http://clk.atdmt.com/MRT/go/127032869/direct/01/ -- Chris Wareham

Re: Compiling JSPs - how to ignore files with certain extensions.

2005-12-06 Thread Chris Wareham
Tim Funk wrote: What tomcat version and commands are you using? IIRC - jspf files by default are not precompiled. I started with Tomcat 5.0.30, but have switched to 5.5.12. The ant targets that I am using is similar to the ones in the Tomcat docs: target name=init-jsp depends=build

Re: PostgreSQL vs MySQL with Tomcat

2009-01-16 Thread Chris Wareham
when using PostgreSQL rather than MySQL, as the former handles joins across more than one table far better. Thanks much in advance, Ken Bowen Chris -- Chris Wareham Senior Software Engineer Visit London Ltd 6th floor, 2 More London Riverside, London SE1 2RR Tel: +44 (0)20 7234 5848 Fax: +44

Re: PostgreSQL vs MySQL with Tomcat

2009-01-20 Thread Chris Wareham
applications where MySQL is the de-facto standard for persistence. I'd strongly recommend you try another database engine such as PostgreSQL or Firebird, and compare MySQL for performace, scalability and standards conformance. Chris -- Chris Wareham Senior Software Engineer Visit London Ltd 6th floor

Re: PostgreSQL vs MySQL with Tomcat

2009-01-22 Thread Chris Wareham
versions of MySQL are down to pressure from Sun to get something, anything, to market. A cynic would say that's always been part of MySQL's problems, and that it's generally true of most commercial software (open or closed source). Chris -- Chris Wareham Senior Software Engineer Visit London Ltd 6th

Re: run tomcat as tomcat user

2009-01-22 Thread Chris Wareham
--destination-port 443 -j ACCEPT # /sbin/iptables -t nat -A PREROUTING -j REDIRECT -p tcp --destination-port 443 --to-ports 8443 # /sbin/service iptables save # chkconfig iptables on # service iptables start Hope this helps, Chris -- Chris Wareham Senior Software Engineer Visit London Ltd 6th

Re: PostgreSQL vs MySQL with Tomcat

2009-01-23 Thread Chris Wareham
of the LAMP crowd - they've never tried anything else, so when they hit this kind of problem they assume it's a limitation of the kind of tools they are using, not of the specific tools themselves. Chris -- Chris Wareham Senior Software Engineer Visit London Ltd 6th floor, 2 More London Riverside, London

Re: PostgreSQL vs MySQL with Tomcat

2009-01-23 Thread Chris Wareham
Leon Rosenberg wrote: On Fri, Jan 23, 2009 at 11:45 AM, Chris Wareham cware...@visitlondon.com wrote: By it's very definition (see Codd or Date), an RDBMS should be capable of performing joins with good performance. MySQL often struggles to do so thanks to the poor optimiser, so you had

Re: PostgreSQL vs MySQL with Tomcat

2009-01-23 Thread Chris Wareham
Leon Rosenberg wrote: On Fri, Jan 23, 2009 at 12:36 PM, Chris Wareham cware...@visitlondon.com wrote: So you perform two queries from the application layer? You are basically doing a join by hand - the cost of those two round trips to the database will lose to a single query with a join

Re: PostgreSQL vs MySQL with Tomcat

2009-01-23 Thread Chris Wareham
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris, Chris Wareham wrote: I am particularly wary of MySQL because of the way missing features have been disingenuously described as unnecessary, and broken features as the MySQL developers knowing better than everyone

Re: PostgreSQL vs MySQL with Tomcat

2009-01-23 Thread Chris Wareham
Leon Rosenberg wrote: On Fri, Jan 23, 2009 at 12:59 PM, Chris Wareham cware...@visitlondon.com wrote: Reread my last message, and take a look at the internals of any half decent RDBMS. Frequently accessed data will get cached in memory, and the cost of many joins will be less than the cost