In my previous posts I discussed about Cruisecontrol.net and its legacy support to .Net development. Hudson is yet another continuous integration tool. Hudson is also free like CCNet and built in java. - CCNet has its legacy support to .Net applications where as Hudson can be easily configured on both the environments (.Net and Java). - One of the major differences in CCNet and Hudson is the richer GUI of Hudson provide user interactive screens for project configuration where as in CCNet we have ......
XML is case sensitive hence Xml parser (XmlDocument) too... In below example I am trying to search the <user> element node with name attibute as 'pupu'. <user name="PuPu" fullname="Priyanka T" email="pupu.t@pupusworld.com" /> ::translate() functon esures the case insensitive comparision in Xpath expression. XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load("<xml file to load>"); XmlElement userElement = (XmlElement)xmlDoc.Document... ......