It should work. Try:
java -Djava.util.logging.config.file=logging.properties ...
where logging.properties contains:
handlers= java.util.logging.ConsoleHandler
.level= INFO
java.util.logging.ConsoleHandler.level = FINER
java.util.logging.ConsoleHandler.formatter =
java.util.logging.SimpleFormatter
org.jcp.xml.dsig.internal.level = FINER
org.apache.xml.security.level = FINER
--Sean
Wally Dennis wrote:
I am trying to enable debug logging on XML Signature creation/validation - I
have read Sean's blog entries here:
http://weblogs.java.net/blog/mullan/archive/2006/02/more_xml_signat_1.html
http://weblogs.java.net/blog/mullan/archive/2008/03/configuring_the.html#comment
s
and these do describe the type of logging I need, but unless I am missing
something (which is entirely possible), these won't work in my situation.
I am using xml-security in the context of Axis2/Rampart/WSS4J included inside
my J2EE application running on IBM Websphere 6.0 (JDK 1.4). We are using log4j
for all of our logging tasks. Based on the information in the blog posts, I
was able to locate the classes containing the logging statements, but when I
actually run my code, I never reference these classes. The logging statements
are in classes (ex: DigesterOutputStream) within the org.jcp.xml.dsig.internal
package, but my application is using classes in the
org.apache.xml.security.utils package.
Any ideas or assistance you can provide would be most appreciated.
Thanks.