* @return The resolved NamingContext object.
* @exception org.omg.CosNaming.NamingContextPackage.NotFound
*/
protected synchronized NamingContext resolveContext(NameComponent name)
throws org.omg.CosNaming.NamingContextPackage.NotFound {
BindingTypeHolder type = new BindingTypeHolder();
// Resolve this to an object. We must be able to resolve this.
org.omg.CORBA.Object resolvedReference = resolveObject(name, type);
if (resolvedReference == null) {
throw new NotFound(NotFoundReason.missing_node, new NameComponent[] {name});
}