Chris Lercher
Chris Lercher

Reputation: 37778

GWT + XML documents with namespaces

I'd like to get a quick overview of available solutions (libraries, ...) that allow me to work with XML documents with namespaces on a DOM level - in GWT's client side.

Additionally, I'm looking for an XPath solution that can work on that DOM (even if it requires writing my own XPath Navigator).

XML parsing and serialization isn't necessary on the client - this can be done on the server.

Upvotes: 3

Views: 1323

Answers (2)

Harald
Harald

Reputation: 71

Feel free to take a look at Totoe: http://code.google.com/p/totoe/

It's an alternative XML parser with XPath and namespace support for GWT. Basically it is a GWT port of Sarissa (http://dev.abiss.gr/sarissa/).

HTH Harald

Upvotes: 2

Vladislav Rastrusny
Vladislav Rastrusny

Reputation: 29995

Is this what you look for: http://realazthat.blogspot.com/2009/08/xpath-for-gwt.html

Upvotes: 2

Related Questions