Directory Services

Binding to Child Objects

In ADSI, a container object exposes the IADsContainer interface. The IADsContainer::GetObject method is used to bind directly to a child object. The object returned by IADsContainer::GetObject has the same security context as the object on which the method was called. This means that if alternate credentials are used, the alternate credentials do not have to be passed to the binding function or method again to maintain the same credentials.

The IADsContainer::GetObject method takes a relative distinguished name (RDN) that is relative to the current object. This method also takes an optional class name and returns an IDispatch interface pointer that represents the child object. To obtain the desired ADSI interface, such as IADs, call the QueryInterface method of this IDispatch interface pointer.

Examples

The following C++ code example shows a function that retrieves a specified child object.

HRESULT GetChildObject(IADs *pObject, 
					 LPCWSTR pwszClass, 
					 LPCWSTR pwszRDN, 
					 IADs **ppChild)
{
	if(NULL == ppChild)
	{
		return E_INVALIDARG;
}

	*ppChild = NULL;

	if((NULL == pObject) || (NULL == pwszRDN))
	{
		return E_INVALIDARG;
}

	HRESULT hr;
	IADsContainer *pCont;

	hr = pObject->QueryInterface(IID_IADsContainer, (LPVOID*)&pCont);
	if(SUCCEEDED(hr))
	{
		BSTR bstrClass = NULL;
		if(pwszClass)
		{
			bstrClass = SysAllocString(pwszClass);
	}

		BSTR bstrRDN = SysAllocString(pwszRDN);
		if(bstrRDN)
		{
			IDispatch *pDisp;
		
			hr = pCont->GetObject(bstrClass, bstrRDN, &pDisp);
			if(SUCCEEDED(hr))
			{
				hr = pDisp->QueryInterface(IID_IADs, (LPVOID*)ppChild);
			
				pDisp->Release();
		}

	}
		else
		{
			hr = E_OUTOFMEMORY;
	}

		if(bstrRDN)
		{
			SysFreeString(bstrRDN);
	}

		if(bstrClass)
		{
			SysFreeString(bstrClass);
	}


		pCont->Release();
}

	return hr;
}