Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bchagnon

    How to merge two XML files??

    Thanks for your answers guys, but something is missing. I have to merge 2 files, but if the element in the file #1 is in the file #2, i want to replace it in my master file. If this element is not in the file #1, I have to add it. In my example, you see that all elements in file 1 are there...
  2. bchagnon

    How to merge two XML files??

    Hi! I want to merge two xml files. Ex: I want to merge the file 2 into the file 1. file 1 <aaa> <bbb>Canada</bbb> <eee>Belgium</eee> </aaa> file 2 <aaa> <bbb>USA</bbb> <ccc>Canada</ccc> <ddd>France</ddd> </aaa> result <aaa> <bbb>USA</bbb> <ccc>Canada</ccc>...
  3. bchagnon

    Load Transformation Wihout Using XSL File??

    I have a string containing the xsl sequence. XPathNavigator nav = root.CreateNavigator(); // Transform the file. XslTransform xslt = new XslTransform(); StringWriter swXml = new StringWriter(); xslt.Load(????); is there a fonction like LoadXsl or someting like that? I don't want to use a xsl...
  4. bchagnon

    Problem with the copy-of

    Hello! I'm trying to create my Xpath in a variable and give to the copy-of function. The problem is the xml result. The xpath is not execute by the copy-of function, the xpath is displayed on the screen! What's i'm doing wrong??? I'm doing it because my xpath is normally in another xml file...

Part and Inventory Search

Back
Top