> Is it possible to intercept data values transferred from server to
> remote computer display and put them in a text file for post-processing
> ? Each data value is accessible individually with graphic cursor but I
> don't know how to store the whole set of data.
>
Possible, yes. Easy, no.
The protocol uses binary data, roughly what is in flattened strings. It
refers to controls using indices for the panel. It has opcodes for
property changes, value changes, window opening/closing, etc. The
protocol is relatively new and it is still changing a bit from release
to release, so it isn't documented for outside consumption.
If you want to log some of the values, you might just add datasocket
bindings to the controls and indicators
of interest, then write a
program to poll and log the values. This won't get all values, but then
neither does remote panels. Both of them will periodically send the
last known value and aren't concerned with every last value written to
an indicator.
Greg McKaskle