Errata for Programming WCF Services
Submit your own errata for this product.
The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".
The following errata were submitted by our customers and approved as valid errors by the author or editor.
Color Key: Serious Technical Mistake Minor Technical Mistake Language or formatting error Typo Question Note Update
| Version |
Location |
Description |
Submitted By |
Date Submitted |
Date Corrected |
| Printed |
Page 137
First paragraph |
Change "helper property knowntype[]" to "helper constructor"
|
Anonymous |
Nov 10, 2010 |
Nov 01, 2010 |
| Printed |
Page 453
Bottom code block |
IAsyncResult IMyContract.BeginMyMethod(string text,AsyncCallback
callback,object asyncState)
Code alignment needs to be corrected. Move callback, back up one line and indent object asyncState) so that it aligns with the end of the code above it.
|
Anonymous |
Nov 10, 2010 |
Nov 01, 2010 |
| Printed |
Page 454
Last sentence in paragraph above Example 8-40 |
Put the line "Example 8-40 shows the implementation of AsyncOneWay
ClientBase<T>." as its own paragraph below where it is currently.
|
Anonymous |
Nov 10, 2010 |
Nov 01, 2010 |
| Printed |
Page 455
Example 8-40 |
Change "m_Handles" to "m_PendingOperations" in three places:
In the code:
ManualResetEvent handle = new ManualResetEvent(false);
lock(m_Handles)
In the code:
handle.Set();
lock(m_Handles)
In the code:
public new void Close()
{
lock(m_Handles)
|
Anonymous |
Nov 10, 2010 |
Nov 01, 2010 |
| Printed |
Page 753
First code block and second to last paragraph |
In two places, change "replayAddress" to "responseAddress"
|
Anonymous |
Nov 10, 2010 |
Nov 01, 2010 |
| Printed |
Page 763
Example C-22 |
Example C-22, two places, change the first two instances on page 763 of "replayAddress" to "responseAddress"
|
Anonymous |
Nov 10, 2010 |
Nov 01, 2010 |
| Printed |
Page 822
code block |
Change
void InitializeCallStack2()
{
if(OperationContext.Current == null || Header == null)
{
Header = new SecurityCallStack();
}
else
{
Header = SecurityCallStackContext.Current;
}
}
To:
void InitializeCallStack()
{
if(OperationContext.Current != null)
{
Header = SecurityCallStackContext.Current;
if(Header == null)
{
Header = new SecurityCallStack();
}
}
else
{
Header = new SecurityCallStack();
}
}
|
Anonymous |
Feb 10, 2011 |
|
|
| |