Errata
There are 3 entries for the tag
Errata
A couple of mistakes in chapter 8; On page 197 the command to create a user within a database needs more explanation, so the whole paragraph should read Adding a user to a database Just because a login exists and can connect to SQL Server it doesn’t gain access to any databases. You must first grant an account access to the database. You can do this with the following SQL command: USE [exampleDatabase] GO ...
Wrox will be offering an official errata on the book’s page soon. The index refers to XMLTs with a reference to page 234 , that page correctly calls them XSLTs. On page 128 comments in the sample code misspell encryption as “encyrption”. Figure 6.2 on page 133, diagrams asymmetric encryption not symmetric encryption as the figure label states. In other news Dan Maharry thinks the book is splendid. Technorati Tags: Securing ASP.NET,Errata,Wrox
#1 of what will be doubtless many. Right now I’ve started to put things away, so I don’t know when I’ll have the ability to produce a proper errata to Wrox requirements, so rather than have you struggle I’m posting the correction(s) here. Listing 10-11 on page 251 is incorrect, and if ran no X509 signing certificate will be extracted, although the XML signature will be verified. The code should be as follows: public static bool VerifySignature(XmlDocument document, out X509Certificate signingCertificate)
{
// Create a new SignedXml object and load
// the signed...