Re: I have a problem

2001-08-28 Thread Mark Balster
Do you have a key and value for index.title in your message resource file? You may want to consult the struts documentation on localization. - Original Message - From: Calvin Lau [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 28, 2001 9:01 AM Subject: Re: I have a problem

Re: Success with Struts

2001-03-15 Thread Mark Balster
for convience. We have talked about having an outside service host the application therefore standards based is a big plus for us. I hope this helps you. Mark Balster CIO Expressdata - Original Message - From: "Nick Afshartous" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: Has any one used struts and log4j successfully?

2001-02-27 Thread Mark Balster
I currently use Log4j with NDC enabled combined with struts. Here is how I use it: - Run PropertyConfigurator from a startup servlet - import org.apache.log4j.Category in your code - set reference to log4j in your code public class loginAction extends Action { static Category cat =

Re: Has any one used struts and log4j successfully?

2001-02-27 Thread Mark Balster
PropertyConfigurator.configure() does like an absolute path and you still can give it one using a relative web path in your webapp directory. You can even specify the relative path your struts resource file ( if you chose to do so ). If you use a startup servlet, something like this should