The "fill/sync" mecanism provided by data management servicesis a sort
of RPC implementation that streamlines client-to-serverdata retrieval
and update. Its purpose is not real-time datasyncing between your client
and server.If you want the server to keep client-data up-to-date,
youwill need to use messaging services provided by flex and/or JMS,
sothe server can push a message to the clients each time a bunch ofdata
is updated. In this scenario, the server will be messageprovider, and
your clien...