RE: WCF TraceListeners

2011-03-09 Thread Peter Maddin
with the very nice wcf configuration editor. Regards Peter From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Matt Siebert Sent: Wednesday, 9 March 2011 9:41 AM To: ozDotNet Subject: Re: WCF TraceListeners I'd be really interested if there's a way to do

WCF TraceListeners

2011-03-08 Thread Peter Maddin
I can set up my wcf client proxy class in code. I can set up a Trace Listener in particular I would like to use the default XmlWriterTraceListener. There does not seem to be any way of intregrating a wcf client proxy with a trace listener short of building a custom tracelistener and

Re: WCF TraceListeners

2011-03-08 Thread Matt Siebert
I'd be really interested if there's a way to do this without the config file. I've already used these traces to fix an issue in development, and it'd be nice to be able to easily enable / disable this stuff out in the wild. I'm not totally familiar with the tracing system, but I've been working

RE: WCF TraceListeners

2011-03-08 Thread Keith Knight
it). From: ozdotnet-boun...@ozdotnet.com [ozdotnet-boun...@ozdotnet.com] On Behalf Of Matt Siebert [mlsieb...@gmail.com] Sent: Wednesday, 9 March 2011 9:40 AM To: ozDotNet Subject: Re: WCF TraceListeners I'd be really interested if there's a way to do this without

WCF TraceListeners

2011-03-07 Thread Peter Maddin
For tracing using WCF services one adds a system.diagnostics section usually by using the WCF configuration editor during development. I would like to be able to adjust settings like this configuration system.diagnostics sources source name=System.ServiceModel.MessageLogging

Re: WCF TraceListeners

2011-03-07 Thread Preet Sangha
Why not create a diagnostic app.config file too at deployment and the user can swap at diagnostic time? On 8 March 2011 17:25, Peter Maddin petermad...@iinet.net.au wrote: For tracing using WCF services one adds a system.diagnostics section usually by using the WCF configuration editor during

RE: WCF TraceListeners

2011-03-07 Thread Peter Maddin
a Trace Listener and bind that to my WCF web service endpoint to it writes trace information. Regards Peter From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Preet Sangha Sent: Tuesday, 8 March 2011 1:04 PM To: ozDotNet Subject: Re: WCF TraceListeners Why