Is the 70-515 MCTS training kit the wrong ASP.NET health monitoring question?

In my book, "MCTS SElf-Paced Training Kit (Exam 70-515): Web Application Development with the Microsoft .NET Framework 4," the following question arises on page 418:

You want to configure the state of ASP.NET monitoring to log information every time a user cannot log into the server system. What class of web events should you use?

  • A. WebRequestEvent
  • C. WebAuditEvent
  • C. WebApplicationLifetimeEvent
  • D. WebAuthenticationSuccessAuditEvent

The answer, according to the book, D. However, according to the book, WebAuthenticationSuccessAuditEvent is

"Used to provide information if successful user authentication on the site"

. I think that perhaps the book should have said that the WebAuthenticationFailureAuditEvent class should be used, which

"Used to provide information if a failed authentication attempt occurs on the site.

Do I believe the book is wrong?

+6
health-monitoring
source share
1 answer

Yes you are right. The book is incorrect.

+3
source share

All Articles