Subject | Re: Strategic Replacement for Services API |
---|---|
Author | Roman Rokytskyy |
Post date | 2005-07-28T18:22:33Z |
> It's called an XML parser, Roman. It parses XML. The idea of usingDo you have a universal parser that takes XML on one side and returns
> XML is so we don't have to create a parser for each new request type.
my domain objects on the other? In general case this issue is not
solved in Java, did you manage that in C++?
Or you just have a SAX or DOM parser and application has either to
provide custom event SAX handlers for each XML structure or navigate
through the DOM to find the needed node (I doubt that you support
something like XPath there)?
Roman