Advertisement

635 organizations, including eBay, Ericsson and Lockheed Martin, now work smarter with Corporate Accounts. Save up to 42%

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested XML Solutions: 51 - 75 of 892
 
Hello Experts,                        I would like to convert a CSV file a sample of which I am providing below to XML so that it can be uploaded into SQL Server using Bulk method. Could you ...
Hi, I have a .swf file called loader.swf which i want to load external .swf files into it via XML.  Now this loader.swf file will primarily hold all the XML actionscript code and anything it ...
If I try to run the command wsdl2java for an wsdl file. It gives the following error org.xml.sax.SAXException: Fatal Error: URI=file:///C:/marsh.wsdl Line=1: The processing instruction targ...
I want to get the attribute value of the first yweather:forecast node in the code snippet. I've already got it using:  Dim xml As String = GetXML(RSS_URL)         Dim dom As XmlDocument =...
Hi all, I am trying to programatically validate an XML file against an XSD schema using J2SE and Xerces.  I have been looking around all day but cannot find an actual example which works f...
Hi, I know C#, but not VB.   How do I create the equivalent C# script for this VB Syntax? Set xml Server.CreateObject("MSXML2.ServerXMLHTTP") Thanks complete function is here. but I...
Hi, counter and counter-increment don't seem to pass in my parser. Are there any workarounds to do what I'm doing here (as in using a "while" loop), without the "counter" tag? Here is the c...
I am importing XML files into an Excel spreadsheet.  I open the XML source pane and open an XML map. I drag the folder in the source pane over to the cell where I want the data to begin and th...
Hi, I need some help using XPath to retrieve data from an XML file.  A shortened example of the XML is below: <Date>   <Year>2008</Year>   <Month>02</Month>   <Day>01</Day> </Date> ...
I'm not sure if this is possible as my understanding of XML is pretty limited. What I have is an XML document essentially being used as a database, I'm using it to store names and telephone...
I'm trying to import an xml file into ms access. I've opened successfully one of the files I need to import in ms excel and the table that comes out is perfect. Now the problem is that with so...
I have an xml document like this <?xml version="1.0" encoding="utf-8" ?> <!-- This file defines the directory structure for registration of new content providers.--> <!-- Change text valu...
Hi all, I have the follwing XML file . If I want to retrieve game1 moves , how would I do it using the the simplest way in javascript ? <?xml version="1.0" encoding="UTF-8" standalone="...
Following is my xml: <node ip="10.10.10.10">      <port index="1"></port> </node> Using XPath, I would like to get the port index value (1)  without the attribute name or the commas. Wh...
I have an xml file and I want to read the content in a string. Then I will do a Replace on the string and write a new xml file. Can nayone help me how to use the stream reader to read the ...
I just dont understand the xml process. is it necesssary to use xml to achieve what im trying to accomplish in the attached photo? All im trying to achieve is a html file that has aprox 8 t...
Hi I am trying to get a basic XML file going. Here is the DTD I specified: <?xml version="1.0" encoding="UTF-8" ?> <!-- LILO_DO_Roster.dtd --> <!ELEMENT LILO_DO_Roster (period+)> ...
I use Delphi 7, with TXMLDocument. I read this XML : <?xml version="1.0" encoding="UTF-8"?> <AddOrder xmlns="http://add.order.ebonding.telus.com" xmlns:ebnd="http://ebonding.telus.com...
We supply an xml feed to various third-parties and specify encoding='utf-8' in the xml file. We've had a couple of calls this week from a client who could not parse the xml file as it containe...
I've looked high and low for a PHP or Perl script that will take an XML file and turn it into a CSV or other delimited txt file.  It seems as if this XML file was created by Excel, but I can't...
This is continued from another question: http://www.experts-exchange.com/Web/Web_Languages/XML/Q_20931704.html#11007196 I'm trying to post xml to an asp page, then a response to the .ne...
Is there a way to exit a for-each loop once a particular node has been found? Or maybe there is an approach that will give me the node I want in the first place without looping at at? e....
I have the following XML : <Product> <RequirementList>   <Requirement>      <RequirementId>55</RequirementId>      <RequirementValue>TEST</RequirementValue>   </Requirement>   <Requir...
I'm getting a xml file with a .png picture embedded in base 64. How can I decode and save as picture file? I'm using VBA. I'm attaching the code i'm using which obviously doesn't work. I attac...
i want to implement something like this if (tag is [<firstname> or <lastname>]) {   do string mainpulation(string within the tag) } in XSLT where I am trying to modify the values in a...