Hi,
I'm writtig a DFC application. I need to show in a table all the repository sessions, divided by CS.
I was trying with:
IDfSessionManagerStatistics estadisticas = manager.getStatistics();
Iterator<IDfSession> iterador = (Iterator<IDfSession>)estadisticas.getSessions(repositorio);
while (iterador.hasNext()){ contador++; iterador.next();
}
return contador;"manager" is a IdfSessionManager used by my application. I think my code obviously returns only sessions in "manager".
How can i obtain all sessions in the repository?
Thanks!!