Tagged Questions
The xmlconfigurator tag has no wiki summary.
3
votes
3answers
395 views
Serializing Java objects to xml and back (XML configuration)
I am looking for a XML serialization framework which has an option for a XML configuration instead of annotation to name classes and fields.
I looked at Simple and XStream but I didn't find a method ...
2
votes
1answer
2k views
log4net initialisation
I've looked hard for duplicates but have to ask the following, no matter how basic it may seem, to get it clear once and for all!
In a fresh Console app using log4net version 1.2.10.0 on VS28KSP1 on ...
1
vote
1answer
197 views
Error Configuring Log4Net EventLogAppender
I have a console application using Log4Net 1.2.10.0. I added an EventLogAppender in my Log4Net config:
<apender name="eventLogAppender" type="log4net.Appender.EventLogAppender,log4net" >
...
0
votes
0answers
73 views
XmlConfigurator.Configure and two Appenders
in this code
private void ConfigureLogger()
{
RichTextBoxAppender rba;
Logger logger = ((Hierarchy)LogManager.GetRepository()).Root;
if (!logger.Repository.Configured)
...
0
votes
1answer
185 views
Log4Net EventLogAppender Not Logging To Custom Event Log
Added an EventLogAppender as Follows:
<appender name="eventLogAppender" type="log4net.Appender.EventLogAppender,log4net" >
<mapping>
<level value="ERROR" />
...
0
votes
2answers
287 views
The type or namespace name 'XmlConfigurator' could not be found
The type or namespace name 'XmlConfigurator' could not be found (are you missing a using directive or an assembly reference?)
Am I missing a namespace???
0
votes
0answers
82 views
commons xmlconfiguration formatting [closed]
Possible Duplicate:
how to pretty print xml from Java
the output from my program is
<myconfig>
<alevel>
</alevel>
<blevel>
</blevel>
</myconfig>
what ...