How can I disable commons.digester debug messages?

2002-12-10 Thread Zsolt Koppany
i, I use tomcat-4.1.12 with log4j-1.1.3 and would like NOT to see the debug messages of the package commons.digester. As you see I tried it but I do get messages (attached) at the end. How can I disable the commons messages? Zsolt log4j.rootCategory=DEBUG, A1, A2

Does logging use log4j-1.1?

2002-12-11 Thread Zsolt Koppany
Hi, I have the impression that logging uses log4j-1.1 and it does not work with log4j-1.2. Is that true? -- Zsolt -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Totaly frustrated with commons-logging

2002-12-11 Thread Zsolt Koppany
for log4j users. -Original Message- From: Zsolt Koppany [mailto:[EMAIL PROTECTED]] Sent: December 11, 2002 5:20 AM To: Jakarta Commons Users List Subject: Totaly frustrated with commons-logging Hi, I'm totally frustrated with commons-logging. My applications uses log4j and now

How to switch logging for dhcp?

2003-11-25 Thread Zsolt Koppany
Hi, I use dhcp from tomcat. How can I enable logging for dhcp using log4j? Zsolt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to switch logging for dhcp?

2003-11-26 Thread Zsolt Koppany
Hi Jose, this is what I have done, but I dont see any debug messages. Zsolt -Original Message- From: Jose Antonio Perez Testa [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 1:48 PM To: Jakarta Commons Users List Subject: Re: How to switch logging for dhcp? Zsolt

When does dbcp close a connection?

2003-11-26 Thread Zsolt Koppany
Hi, I have looked into the dbcp sources and getConnection just returns a java.sql.Connection object. Does that mean that connection.close closes the connection to the database? If not, when will be the connection really closed? Zsolt

Can large upload cause tomcat hanging?

2003-12-10 Thread Zsolt Koppany
Hi, I uploaded a 70Mb file using struts-1.1. The JVM process (jre-1.2.4_02, Linux, SuSe-8.1) got much larger and a couple of hours later tomcat didn't react to the most of the events. What can be the reason? Additionally I found strange the tomcat didn't create the localhost_log... files since

En- and Decrypting of protected values

2004-09-20 Thread Zsolt Koppany
Hi, I need a solution that I can crypt some sensible data but I also need to convert it back to plain text because an external application needs that data in plain-text mode. Who do you propose? Zsolt - To unsubscribe,

How to parse this configuration?

2005-03-14 Thread Zsolt Koppany
Hi, how can I parse the following configuration? file group description=Web extensions=asp,aspx,phtml,shtml,php parser=- type=w/ group description=XML extensions=xml,tld parser=- type=x/ /file My code is: XMLConfiguration config = new

AW: How to parse this configuration?

2005-03-15 Thread Zsolt Koppany
of your XML file. If this is the case, you must strip the file prefix from your keys (because the top level element's name is not evaluated), your keys then may look like group(0)[EMAIL PROTECTED] HTH Oliver Zsolt Koppany wrote: Hi, how can I parse the following configuration? file

Looking for JXPATH and html viewer

2005-03-21 Thread Zsolt Koppany
How can I easily display JXPATH on an html page? Zsolt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to get the entire string with Configuration.getString

2005-03-30 Thread Zsolt Koppany
Hi, Configuration (XmlConfiguration) getString returns (^|\\s)#([1-9][0-9]{3 for config.getString([EMAIL PROTECTED]). How can I get the entire String? scc task_expression=(^|\\s)#([1-9][0-9]{3,}) / I use 1.1RC2. Zsolt - To

AW: How to get the entire string with Configuration.getString

2005-03-30 Thread Zsolt Koppany
behind the ,. Oliver Zsolt Koppany wrote: Hi, Configuration (XmlConfiguration) getString returns (^|\\s)#([1-9][0-9]{3 for config.getString([EMAIL PROTECTED]). How can I get the entire String? scc task_expression=(^|\\s)#([1-9][0-9]{3,}) / I use 1.1RC2. Zsolt

AW: AW: How to get the entire string with Configuration.getString

2005-03-30 Thread Zsolt Koppany
://issues.apache.org/bugzilla/show_bug.cgi?id=29716) Emmanuel Bourg Zsolt Koppany wrote: Thank you Oliver, unfortunately I cannot do that because we have to assure compatibility (with the version where we didn't use commons-configuration), thus here is my code: List exprs

AW: How to get the entire string with Configuration.getString

2005-03-30 Thread Zsolt Koppany
2005 16:33 An: Jakarta Commons Users List Betreff: Re: How to get the entire string with Configuration.getString Sorry I forgot the method was static. Try this instead: XMLConfiguration config = new XMLConfiguration(); XMLConfiguration.setDelimiter('\u'); Emmanuel Bourg Zsolt

AW: How to get the entire string with Configuration.getString

2005-03-30 Thread Zsolt Koppany
: AbstractConfiguration.setDelimiter('\u'); XMLConfiguration config = new XMLConfiguration(); I would assume that, it's better to change a static parameter before an instance that need the change is created. On Wed, 30 Mar 2005 17:24:12 +0200, Zsolt Koppany [EMAIL PROTECTED] wrote: setDelimiter

AW: How to get the entire string with Configuration.getString

2005-03-30 Thread Zsolt Koppany
:12 +0200, Zsolt Koppany [EMAIL PROTECTED] wrote: setDelimiter is in AbstractConfiguration and XMLConfiguration doesn't overwrite it. Again: I'm using 1.1RC2, I don't have the source code of 1.1-RC2 thus I cannot check it. Zsolt

setDelimiter bug in 1.1

2005-04-05 Thread Zsolt Koppany
Hi, The private static variable of XMLConfiguration.DELIMITER cannot not be modified because setDelimiter() modifies AbstractConfiguration.DELIMITER and not XMLConfiguration.ATTR_DELIMITER, I propose to remove XMLConfiguration.ATTR_DELIMITER und using getDelimiter() instead of in

AW: setDelimiter bug in 1.1

2005-04-05 Thread Zsolt Koppany
in the current SVN tree. Emmanuel Bourg Zsolt Koppany wrote: Hi, The private static variable of XMLConfiguration.DELIMITER cannot not be modified because setDelimiter() modifies AbstractConfiguration.DELIMITER and not XMLConfiguration.ATTR_DELIMITER, I propose to remove