In Asp.Net Core there is support for generating a SOAP client via Connected Services in Visual Studio. This SO Questions discusses using that code: Calling a SOAP service in .net Core
My questions is related to debugging such a service call. Generally to do that it's super helpful to see the actual xml that comprises the SOAP request that will be sent over the wire to the server. Is there a way to in Asp.Net Core's SOAP support to see that SOAP xml?
As an aside I even tried to view it using Fiddler, but the request and response are not showing up, even though I have it configured to decrypt HTTPS traffic. I have found other developers reporting this same issue: https://www.telerik.com/forums/fiddler-no-longer-capturing-web-service-requests-in-net
Is there a way to in Asp.Net Core's SOAP support to see the xml generated for the request?