Re: Deploying to servlet and database settings

2005-11-22 Thread Lachlan Deck
Hi there, On 23/11/2005, at 2:33 AM, Jeremy Matthews wrote: Kad, David and I built a patch-quilt guide for Tomcat: http://www.sisuworks.com/page3/files/WebObjects%20Tomcat%20MySQL.rtf Thanks for that... And I have a Tomcat installer as well: http://www.versiontracker.com/dyn/moreinfo/macos

Re: Deploying to servlet and database settings

2005-11-22 Thread Dov Rosenberg
With Tomcat if you run your WO app as a servlet you may see an error that says something like javax.naming.NameNotFoundException: Name jdbc is not bound in this Context You can get rid of that error by adding useNaming="false" into the element of either the server.xml or by creating a XML deploy

Re: Deploying to servlet and database settings

2005-11-22 Thread Jeremy Matthews
Kad, David and I built a patch-quilt guide for Tomcat: http://www.sisuworks.com/page3/files/WebObjects%20Tomcat%20MySQL.rtf And I have a Tomcat installer as well: http://www.versiontracker.com/dyn/moreinfo/macosx/27151 NOTE: If you install this product on OS X Server...well, it could override

Re: Deploying to servlet and database settings

2005-11-21 Thread Lachlan Deck
On 22/11/2005, at 3:39 PM, Randy Becker wrote: Okay. I've got a project working well on my local mysql database, and I'd like to deploy it to my server, which is running jetty. The only problem so far is connecting the app to my database. My host gave me a url of the form jdbc:mysql://mys

Deploying to servlet and database settings

2005-11-21 Thread Randy Becker
Okay. I've got a project working well on my local mysql database, and I'd like to deploy it to my server, which is running jetty. The only problem so far is connecting the app to my database. My host gave me a url of the form jdbc:mysql://mysql/dbname?user=username&password=password where ca