Answers

  1. SQL Azure only supports SQL authentication, which means that the client application needs access to the login details, which can pose a security risk.
  2. SignalR clients maintain connections to a single hub, which means that they will not send data to or receive data from other hub instances.
  3. Implement a backplane system such as Azure Service Bus to keep hubs updated in real time.
  4. Use the Authorize attribute at the controller or individual action level.
  5. If we temporarily remove the Authorize attribute, we can use the browser to make HTTP GET requests or a tool such as Fiddler or cURL to make other requests.
  6. The hub SignalR URL is api/signalr.
  7. We use the same Authorize attribute.
  8. An AD application will be provisioned for the new site and the site's ...

Get Learning Microsoft Azure now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.