I wonder if there are any advatages or disadvantages of using remote shared objects compaired to calling function directly from server to client?
Is there really any disadvantage doing…
List<IClient> myClients = getAppInstance(client).getClients();
Iterator<IClient> itc = myClients.iterator();
while(itc.hasNext())
{
IClient nextclient=itc.next();
nextclient.call("Somefunction", null, someparam);
}
…compaired to listening to updating and listening to shared object changes?
Are there any security issues with remote shared objects that have to be taken into consideration?
Thank you for any help.