Tomcat/MySQL Application Update

2005-08-09 Thread Christopher Molnar
We have a servlet that is run locally on about 20 laptops. I am currently manually updating the application on each laptop about once per month. Can anyone suggest a method of updating an application running on both OS/X and Windows based machines that would check if a new version was

Depreciated?

2005-07-15 Thread Christopher Molnar
I understand HttpSession session=req.getSession(true); has been depreciated. What is correct to use in place of HttpSession ? Thanks, -Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Remote Username

2005-07-11 Thread Christopher Molnar
I have a quick question and hope that someone can point me in the right direction. Once I have a user do basic authentication into a realm , how can I reference the user name and role in the application? I tried: String username = req.getRemoteUser(); but all I am getting back is null.

tomcat and css

2004-03-19 Thread Christopher Molnar
Probably off topic - but I will ask anyways - how does tomcat work with css? Any tips on how to implement? Thanks, -Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat and css

2004-03-19 Thread Christopher Molnar
Thank you, you answered my question - I was looking for how tomcat serves css files. -Chris On Mar 19, 2004, at 8:05 PM, Steven J. Owens wrote: On Fri, Mar 19, 2004 at 07:42:53PM -0500, Christopher Molnar wrote: Probably off topic - but I will ask anyways - how does tomcat work with css? Any

using jar files in place of class files

2004-02-22 Thread Christopher Molnar
I am not sure if it possible. I have a web app that has about 30 class files. I would like to be able to create a jar file that contains these class files for ease of distribution (about 10 laptops). Is this possible, and if so what do I need to put in the web.xml file to make it work?