I have a working WPF application running. It is pointing to my local IIS service. I'm trying to capture the traffic data and below are the ways i have tried so far but no luck.
1) fiddler
try to add localhost.fiddler to the endpoint but not working. can't even see the service page by using browser.
Added the system.net in web.config OR machine.config and still not working.
<system.net>
<defaultProxy>
<proxy proxyaddress="http://127.0.0.1:8888" />
</defaultProxy>
</system.net>
I can see fiddler capturing https://localhost:8443/xxxx.svc if i browse it using chrome. Why I can't see the traffic when I run my WPF application?
Below is my endpoint config
2) RawCap
I have enable the loopback interface in windows 10 and run rawcap I get bunch of log from .pcap file and I'm not sure why is it capturing so many things....I can't find any related traffic log that coming from my WPF application
Below is the exception i get when hitting the service from my application
Can it be due to my local Certificate?
I have tried another approach which is using IISExpress which bypass the certificate using http://, but my fiddler still not capturing anything from my WPF application.