Article ID: 943541 - Last Review: October 10, 2007 - Revision: 1.1

Inside Microsoft Windows SharePoint Services 3.0 comments and corrections

On This Page

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Inside Microsoft Windows SharePoint Services 3.0, 978-0-7356-2320-0.

The following topics are covered:

  • Page 47: _vit_bin should be _vti_bin
  • Page 276: Code example is partially incorrect

MORE INFORMATION

Page 47: _vit_bin should be _vti_bin

On page 47, the second sentence of the second paragraph contains a reference to an incorrect directory.

Change:
"For example, the _vit_bin directory provides WSS with a way to expose DLLs and .asmx Web service files at a path within the URL space of a Web application."

To:
"For example, the _vti_bin directory provides WSS with a way to expose DLLs and .asmx Web service files at a path within the URL space of a Web application."

Page 276: Code example is partially incorrect

On page 276, the last 2 lines of code in the code example for Workflow1.cs under Figure 8-10 is formatted incorrectly and can cause errors.

Change:
// using statements omitted for clarity
namespace HelloWorkflow {
public sealed partial class Workflow1 : SequentialWorkflowActivity {
public Workflow1() {
InitializeComponent();
}
public Guid workflowId = default(System.Guid);
public SPWorkflowActivationProperties workflowProperties;
workflowProperties = new SPWorkflowActivationProperties();
}
}

To:
// using statements omitted for clarity
namespace HelloWorkflow {
	public sealed partial class Workflow1 : SequentialWorkflowActivity {
	public Workflow1() {
		InitializeComponent();
	}
	public Guid workflowId = default(System.Guid);
		public Microsoft.SharePoint.Workflow.SPWorkflowActivationProperties workflowProperties = new Microsoft.SharePoint.Workflow.SPWorkflowActivationProperties();
	}
}

Microsoft Press is committed to providing informative and accurate books. All comments and corrections listed above are ready for inclusion in future printings of this book. If you have a later printing of this book, it may already contain most or all of the above corrections.

Keywords: 
KB943541

Note: This article is from Microsoft Knowledage Base


How we have helped PC users like you

In the News: Read More In ...

Related problems posted by other users

more...