0

Our MVC application communicates via WCF with a services web app (also WCF).

Both apps (MVC & Services) use basic http by default, but we want to prevent server affinity. I made a custom binding that resembles the basichttp, but with settings 'keepAliveEnabled = false'.

The application works as before, but I want to verify if the keep alive is set to false between the UI and services.

How can this be done ?

(WireShark, Fiddler ??)

Patrick Peters
  • 9,456
  • 7
  • 57
  • 106

1 Answers1

0

I found a solution.

I checked this post on SO:

How to use Fiddler to monitor WCF service

and replaced the localhost DEV client setting to my full computer name and I can track all the UI outbound calls now.

Community
  • 1
  • 1
Patrick Peters
  • 9,456
  • 7
  • 57
  • 106