trace

How do I get Debug/Trace.Writeline output from a WCF Service

I have a WCF Service hosted in IIS. I am getting the WCF Tracing , but I can't find where my trace.writeline entries are going. My trace listener only logs the WCF Tracing. Is there a specific Source I need to add to get this included. ...

Having 304 code not get logged by the trace.axd

I have a typical MVC site, while reviewing the trace.axd I'm getting a lot of noise from my JS files which all return http 304 codes(Not modified). Is there a way to have JS files, or 304 codes be filtered out my the trace.axd? ...

What is IIS 7 Advanced Logging provider GUID? I can't raise event to it

Hi, all: I asked this in IIS.net forum but want to ask again here. In my custom module, I want to raise event using Advanced Logging. I copied code from here http://www.ksingla.net/2009/04/using_advanced_logging_to_log_custom_module_data/ But no luck. In debugging, I find that pHttpTraceContext->RaiseTraceEvent( &Event ); always retur...

Sybase ASE - Tracing queries / processes

Hey Everyone, If there are any Sybase ASE experts out there, I was wondering if there is a way to get Sybase to trace all the queries that it receives. I currently have a program running that usually begins displaying some strange behaviour after 7 hours from startup. I would like to find out what Sybase is doing at this time, so that...

How do I compare Silverlight StylusPoints to a Path?

Can someone point me in the right direction on how I would compare a Stroke StylePoints collection to a Path? I basically want to compare the users traced manipulation over a shape to see how accurate they were. I'd also like to add a threshold for error. Thank you! Tim ...

Catch events by dynamically adding Handler using Code Generation

I need to hook up all events in an application and trace all information (raising, arguments, etc.). I found this at Stackoverflow: http://stackoverflow.com/questions/2802774/tracing-all-events-in-vb-net However, I need a solution that not only writes the called event to console, but calls TraceVerbose with parameters showing sender a...

howto filter Visual Studio Debug Output

I have a bunch of warnings (over 10000) in my debug output which can be savely ignored: Warning: CFile::GetStatus() returns m_attribute without high-order flags Is it possible to write a filter for this window? ...

RTP traces repository

Is there any public RTP repo where can I download a lot of RTP traces (in addition to the ones in example wireshark traces)? Any suggestions are welcome. ...

Convert .trc TO Pdf/.Doc

i wanna convert .trc files(sql trace files) to PDF or .Doc format , is there any convertor which can accomplish the job? ...

AS3 trace, specially errors message to a textbox

I'd like to be able to redirect the traces, and even more then traces the flash error reports to a text-box inside my flash app, so I can see the bug report in a computer that doesn't have flash-player debugger version or flashbug installed. Any error message that comes on in my app should show in this textbox. How can I do this? ...

.Net: How to suppress TraceSource header ("SourceName TraceEventType: Id : ")?

I have a TraceSource object that I use to log the initialization of a VB.Net application. It has several TraceListeners attached: ConsoleTraceListener TextWriterTraceListener EventLogTraceListener For the first two I want the entry output to be "raw" - that is, without the standard header: SourceName TraceEventType: Id : I have im...