{
NodeCacheRegistryImpl nodeCache = clientDoc.getNodeCacheRegistry(); // No puede ser nula
nodeCache.addNode(node,id); // node no puede ser nulo (dar� error)
// Con cacheIfPossible = true tambi�n cacheamos padres, minimizando problemas.
NodeLocationWithParentImpl nodeLoc = NodeLocationWithParentImpl.getNodeLocationWithParentUsingCache(node,id,true,nodeCache);
if (!nodeLoc.isJustCached())
throw new ItsNatException("INTERNAL ERROR");
clientDoc.addCodeToSend( JSRenderNodeImpl.addNodeToCache(nodeLoc) );
}