Hello, Thanks for the quick response. In the last line: Transformer->transform(wrapper, stylesheetName,target);
What would I pass in as the stylesheetName when I am not using any stylesheet? Why do I need to use Transformer? Does this transform my Xerces DOM Document to a Xalan DOM which I can use to parse and look for a specific node value? Thanks, Sami -----Urspr�ngliche Nachricht----- Von: Peter Guyatt [mailto:[EMAIL PROTECTED] Gesendet: Montag, 26. April 2004 13:49 An: [EMAIL PROTECTED]; [EMAIL PROTECTED] Betreff: RE: Using Xerces DOMDocument with Xalan Xpath. Hi There, You use the XercesDOMWrapperParsedSource so that you can use the Xalan transformer. It looks somthing like this: parser->parse(src); //get the document doc = parser->getDocument(); //used to help convert a Xerces COM tree into a Xalan DOM tree XercesDOMSupport supporter; XercesParserLiaison liaison; //let the wrapper know the it does not have a id XalanDOMString uri(""); XercesDOMParser *parser; //create a new wrapper used to 'wrap' the Xerces DOM into a Xalan DOM XercesDOMWrapperParsedSource wrapper(doc, liaison, supporter, uri); //transform file transformer->transform(wrapper,stylesheetName,target); Thanks Pete -----Original Message----- From: Sami Islam [mailto:[EMAIL PROTECTED] Sent: 26 April 2004 12:20 To: Xalan User List; Xalan Dev List Subject: Using Xerces DOMDocument with Xalan Xpath. Hello, I parsed an XML Document in Xerces DOMDocument. I would like to use Xalan XPath to obtain particular information and values from my XML document. How can I use the DOMDocument from Xerces in Xalan? Regards, Sami Islam Software Entwickler DeTeWe Informationssysteme + Consulting GmbH Abteilung Healthcare -- Lilienthalstrasse 5 D-30916 Isernhagen Telefon: +49 (0)511/368499-843 Telefax: +49 (0)511/368499-88 E-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
