Vikram A K Gupta wrote:
Thanks David for helping out !!

Few more questions: What advantage XSLT Stylesheet approach has over Xerces-C 
Source tree/Xalan C Wrappers approach ?
The advantage of a stylesheet-based approach is that it is completely standard, so you can use any XSLT processor that fits your needs.


Also we are able to achieve the objective through XSLT Stylesheet but 
requirement is that we need to implement it by using the Xerces-C
source tree with the Xalan-C wrappers itself !! We saw couple of posting on 
this group and tried to implement it as following, It isn't working !! Also 
Classes DOMParser, DOM_Document, XercesDocumentBridge are all deprecated.  So 
what classes should be used instead of these. Also How can we implement the 
requirement using Xerces-C Source tree with Xalan-C wrapper approach !!
The "bridge" classes for the old Xerces DOM are deprecated because the old DOM itself is deprecated and now gone in the latest version of Xerces-C. You should use the "wrapper" classes instead. If you look in the archives of the Xalan-C User list (which is where you should be posting these sorts of questions), you'll find lots of information about using the wrapper classes.

However, if your processing flow involves changing the Xerces-C DOM then re-serializing it as XML, I suggest you consider an XSLT-based approach as it will be much cleaner.

Dave

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to