Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove "VsDebuggerCausalityData" data from SOAP message?

Tags:

I've got a problem where incoming SOAP messages from one particular client are being marked as invalid and rejected by our XML firewall device. It appears extra payload data is being inserted by Visual Studio; we're thinking the extra data may be causing a problem b/c we're seeing "VsDebuggerCausalityData" in these messages but not in others sent from a different client who is not having a problem. It's a starting point, anyway.

The question I have is how can the client remove this extra data and still run from VS? Why is VS putting it in there at all?

Thanks.

like image 839
Scott Marlowe Avatar asked Aug 28 '08 17:08

Scott Marlowe


1 Answers

For remove 'VsDebuggerCausalityData' you need stop de Visual Studio Diagnostic for WCF using this command:

VS 2008 -> c:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE>vsdiag_regwcf.exe -u VS 2010 -> c:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE>vsdiag_regwcf.exe -u

I hope this help you or other people.

like image 130
ggrocco Avatar answered Sep 24 '22 21:09

ggrocco