A
Andrew Neiderer
Thanks for the reply !
He is probably RIGHT.
Any thoughts on this as a possibility ?
Let my Java program, which I will edit to make as fast as possible,
generate the SVG (a 2D XML application) and use XSLT to update ?
Maybe this reduce the 10 second delay.
I don't know XSLT but will learn if this is a possibility.
- Andrew M. Neiderer
(e-mail address removed)
-----------------------------------------------------------
Subject: Re: binary XML ?
Do you really think that the XML representation of your data is responsible
for the slow display ? I would rather guess that your Java implementation
of the display is to be blamed.
..
..
..
I bet that the bottleneck in your application is SVG, its interpretation and
the rest of the display process.
He is probably RIGHT.
Any thoughts on this as a possibility ?
Let my Java program, which I will edit to make as fast as possible,
generate the SVG (a 2D XML application) and use XSLT to update ?
Maybe this reduce the 10 second delay.
I don't know XSLT but will learn if this is a possibility.
- Andrew M. Neiderer
(e-mail address removed)
-----------------------------------------------------------
Subject: Re: binary XML ?
Andrew said:I have written a Java application which generates lots (150 x 150) of
Scaleable Vector Graphics (SVG), which is a 2D XML application, <rect>s.
The problem is that it takes about 10 seconds to display the frame. I
need to approach real-time display if possible. So I thought a binary
representation of the data would speed it up.
Do you really think that the XML representation of your data is responsible
for the slow display ? I would rather guess that your Java implementation
of the display is to be blamed.
..
..
..
I bet that the bottleneck in your application is SVG, its interpretation and
the rest of the display process.