----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: ChangingShiv Message 1 in Discussion What are the core functionalities in XML .NET framework? Can you explain in detail those functionalities? The XML API for the .NET Framework comprises the following set of functionalities: XML readers With XML readers the client application gets reference to instance of reader class. Reader class allows you to scroll forward through the contents like moving from node to node or element to element. You can compare it with the SqlDataReader object in ADO.NET which is forward only. In short XML reader allows you to browse through the XML document. XML writers Using XML writers you can store the XML contents to any other storage media. For instance you want to store the whole in memory XML to a physical file or any other media. XML document classes XML documents provides an in memory representation for the data in an XMLDOM structure as defined by W3C. It also supports browsing and editing of the document. So it gives you a complete in memory tree structure representation of your XML document. What is XSLT? XSLT is a rules based language used to transform XML documents in to other file formats. XSLT are nothing but generic transformation rules which can be applied to transform XML document to HTML, CSV, Rich text etc. Define XPATH? Its an XML query language to select specific parts of an XML document. Using XPATH you can address or filter elements and text in a XML document. For instance a simple XPATH expression like Invoice/Amount states find Amount node which are childs of Invoice node. Whats the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can point to a particular portion of a XML document for instance address.xml#xpointer(/descendant::[EMAIL PROTECTED]).So the above XPOINTER points streetnumber=9 in address.xml. Full Interview Questions for .NET and SQL Server http://www.geocities.com/dotnetinterviews/ Help the community to make job search easier mail your questions to [EMAIL PROTECTED] Looking for a onsite job mail your resumes at [EMAIL PROTECTED] ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
