Here is my scenario:
 1) I have to query for my data from a third party web service (in XML
format), the data can be huge (>100 MB).
 2) I had implemented the parsing of XML everything in browser, which
was making my application sometimes unresponsive.
I have started optimizing my application:
 3) I have transferred the parsing the parsing to server side with VTD-
XML parser which claim to be much faster and also to shift the
computation used in parsing XMLs from client browser to server.

Now i have to display the parsed data in a tablular/graphical format
(Google's Visualization API), which is the best way to move data from
server to client?

First option I am thinking of is : To make an RPC call and send a
vector/list from server to client.

Second option is to create a http proxy (which will also work for Same
origin policy problem), and send the data from Server to client in
JSON format or some kind of Comet programming for HTTP streaming.

I am not sure which one would be the best for my application or any
other idea ?

Thanks in Advance

Nix

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to