08-29-2007 12:20 PM
08-30-2007 09:42 AM
This happens only for variables with the "single-writer" restriction when an existing writer disconnects or a new writer connects - the data is resent because the write-access attribute changes on the server. All variables in the "system" process, that is, implicitly-created variables have the single-writer restriction.
If your system has only one writer connection, and your reader connections' lifetimes are bounded by the writer connection's lifetime then you should not see this issue. You can also completely avoid this by using explicit variables without the single-writer restriction. Explicit variables can be created using the Variable Manager program - and by default they do not have the single-writer restriction.
- Mohan
08-31-2007 06:04 AM
Thanks Mohan!