Is it possible to query across collections with xpath? i.e.
root -- collection1 -- -- doc1 -- -- -- <node>1</node> -- -- -- <node>2</node> -- collection2 -- -- doc2 -- -- -- <node>3</node> -- -- -- <node>4</node> -- -- doc3 -- -- -- <node>5</node> -- -- -- <node>6</node> I would like to get all 6 node elements, from all three documents, from both collections. To get the nodes right now I have to do (from Xindice): xmldb:xindice://localhost:4080/db/collection1/#/node xmldb:xindice://localhost:4080/db/collection2/#/node I'd like to do something like: xmldb:xindice://localhost:4080/db/*/#/node Is that possible? -- Mike
