Exercise 10: Verification

  1. Press F5 to launch the solution in the debugger, all 4 projects should start.
  2. In the CalculatorClient select Routed HTTP connection and click on the Use Rounding button to add the rounding message header.
  3. The client will work but you will see that it is noticeably slower. This is because each call to the service must first fail; then the router will call the services in the backup list until it succeeds. Each operation from the client is a separate call so there will be four failed calls and four successful ones.

Next Step

Exercise 11: Deploying the Web Application