You are right, the setProducerSubtopics control the messages routing no matter that the client has collection which matches the addItemToFill's fillparameters. I thought it was too many messages send to client if the client didn't have the relevant fill. However, it is how it works. It is same as ...
Thanks for bringing this up. I just tested addItemToSync using different sets of fillParameters.I had fill(collection1, "abc") and fill(collection, "123"); I called with "abc", I got a message event and the "abc" filled collection updated(not the "123 filled collection"). It was correct. I calle...
Do you mean that dst.addItemToFill(destination, ["abc"], 0, item) makes the item go into both collections where there are 2 fills on client? ds.fill(collection1, "abc");ds.fill(collection2, "123");William
Hi,From the manual sync document"Note: When you manually route messages, you cannot use the autoRefresh fill capability. Instead, if you want to update fills you must put in calls to manually manage fill membership."addItemToFill and removeItemFromFill are methods to manage fill membership, but crea...
I read your response several time. I didn't see anything wrong. The rtmp channel is defined in your services-config.xml<channel-definition id="my-rtmp" class="mx.messaging.channels.RTMPChannel"> <endpoint url="rtmp://{server.name}:2037" class="flex.messaging.endpoints.RTMPEndpoint"/> ...
Hi Shally,What application server do you run your app on? Did you try moving the lcds samples to your application to see whether it work? Can I see your destination definition in your configuration file? I would also like to see how do you define your DataService in your app. Did you use Flex buil...
There is a hierarchical-events setting which may able to solve your problem. As what you found in Ed's response, the account only has property change event when there is membership change of transactions. If your account balance is derived property which calculate the sum of the transaction. The b...