public void updateSharedObjectStatistics(String path, String name) throws ScopeNotFoundException, SharedObjectException {
IScope scope = getScope(path);
ISharedObjectService soService = (ISharedObjectService) ScopeUtils.getScopeService(scope, ISharedObjectService.class, false);
ISharedObject sourceSO = soService.getSharedObject(scope, name);
if (sourceSO == null)
throw new SharedObjectException();
ISharedObject so = getSharedObjectStatisticsSO(Red5.getConnectionLocal().getScope());
so.setAttribute(path + '|' + name, sourceSO.getData());
}