How to make Jetty serve images ( was Re: Configuring database connection pool with) Jetty in QuickStart

2008-06-06 Thread fsilber
, Mar 14, 2008 at 9:45 AM, Kevin Murphy [EMAIL PROTECTED] wrote: I'm having difficulty adding database functionality to my Wicket QuickStart app by configuring a JNDI data source in Jetty. ... -- View this message in context: http://www.nabble.com/Configuring-database-connection-pool-with-Jetty

Configuring database connection pool with Jetty in QuickStart

2008-03-14 Thread Kevin Murphy
I'm having difficulty adding database functionality to my Wicket QuickStart app by configuring a JNDI data source in Jetty. I've added jetty-naming, jetty-plus, mysql-connector-java, and commons-dbcp to the POM. I have this in WEB-INF/web.xml: resource-ref descriptionMy DataSource

Re: Configuring database connection pool with Jetty in QuickStart

2008-03-14 Thread Igor Vaynberg
wouldnt this be more appropriate for the jetty mailing lists...there is a likelyhood more people on those lists will be able to help you -igor On Fri, Mar 14, 2008 at 9:45 AM, Kevin Murphy [EMAIL PROTECTED] wrote: I'm having difficulty adding database functionality to my Wicket QuickStart

Re: Configuring database connection pool with Jetty in QuickStart

2008-03-14 Thread Gin Yeah
Are you running your app using Quickstart's test.Start? That one does not have Jetty-Plus and does not load your jetty-env.xml and you will get the error you are seeing. Use 'mvn jetty:run' instead. It does Jetty-Plus and loads jetty-env.xml from WEBINF all without any additional config. If