Errata

COM & .NET Component Services

Errata for COM & .NET Component 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.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 36
7th line

Second parameter for GetInterfaceFromGlobal() should be IID of the desired interface,
not IID_IGlobalInterfaceTable.

This call

hres = pGlobalInterfaceTable->GetInterfaceFromGlobal(dwCookie,
IID_IGlobalInterfaceTable,
(void**)&pMyInterface);

should be written like this

hres = pGlobalInterfaceTable->GetInterfaceFromGlobal(dwCookie,
IID_IMyInterface,
(void**)&pMyInterface);

Anonymous   
Printed Page 124
Code Example 5-1. Tracing the activity ID tracing

In order to get the activity id the interface IObjectContextActivity must be used
but the example refers to the IObjectContextInfo interface.

Anonymous