Click here to Skip to main content
15,907,392 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: Convert Excel to XML file/XML Schema, and validate Excel against XML Schema Pin
led mike28-Jul-08 8:22
led mike28-Jul-08 8:22 
Questionhow to ocnvert string to XML file Pin
Aslesh28-Jul-08 5:51
Aslesh28-Jul-08 5:51 
AnswerRe: how to ocnvert string to XML file Pin
led mike28-Jul-08 6:10
led mike28-Jul-08 6:10 
GeneralRe: how to ocnvert string to XML file Pin
Aslesh28-Jul-08 7:52
Aslesh28-Jul-08 7:52 
GeneralRe: how to ocnvert string to XML file Pin
led mike28-Jul-08 8:05
led mike28-Jul-08 8:05 
GeneralRe: how to ocnvert string to XML file Pin
Aslesh28-Jul-08 7:54
Aslesh28-Jul-08 7:54 
GeneralRe: how to ocnvert string to XML file Pin
Aslesh28-Jul-08 9:00
Aslesh28-Jul-08 9:00 
QuestionXML Data Pin
jontyler25-Jul-08 9:58
jontyler25-Jul-08 9:58 
Please forgive my ignorance...I am trying to learn XML while working on a project that may not be able to be done...not sure.

The goal of my project is to create a configuration file that feeds a scheduled program details about reports that need to be run from a database. The details of the "QUERIES.XML" file should contain a "Report" Element. The "Report" element should contain a "Title", "Query", and "Recipients" elements. The Title and Query elements are good. I am having trouble reading the recipients though. The recipients element should have two elements, "Name" and "Address" [e-mail address].

I have tried to create a DataSet but that only reads the Title and Query elements, but does not pick up any of the recipient information.

Here is a sample of my XML file, which I am not even sure is correct. I have been searching all day until I am cross-eyed and I don't know what I am missing.

<?xml version="1.0" encoding="utf-8" ?>
<Report>
<Title>Test Report</Title>
<Query>select Col1, Col2, Col3 FROM Table1 WHERE Criteria='this'</Query>
<Recipient>
<name>John Smith</name>
<address>john.smith@domain.com</address>
</Recipient>
<Recipient>
<name>Joe Williams</name>
<address>joe.williams@domain.com</address>
</Recipient>
</Report>

I have also tried a variation of the file that looks like this:

<?xml version="1.0" encoding="utf-8" ?>
<Report>
<Title>Test Report</Title>
<Query>select Col1, Col2, Col3 FROM Table1 WHERE Criteria='this'</Query>
<Recipients>
<address>john.smith@company.com</address>
<address>joe.williams@company.com</address>
</Recipient>
</Report>

I am not looking for anyone to write code for me...I need some direction on where to go so I can learn and improve my skill.

Thanks
AnswerRe: XML Data Pin
Devang_010126-Jul-08 0:52
Devang_010126-Jul-08 0:52 
GeneralRe: XML Data Pin
jontyler26-Jul-08 12:32
jontyler26-Jul-08 12:32 
QuestionHow to transform a HL7 Xml file to a generic XMl file? [modified] Pin
Member 470396624-Jul-08 16:17
Member 470396624-Jul-08 16:17 
AnswerRe: How to transform a HL7 Xml file to a generic XMl file? Pin
led mike25-Jul-08 5:24
led mike25-Jul-08 5:24 
Question'ref' tag Pin
harsh_296123-Jul-08 21:07
harsh_296123-Jul-08 21:07 
AnswerRe: 'ref' tag Pin
Veldrain25-Jul-08 13:35
Veldrain25-Jul-08 13:35 
QuestionImport Schema problems in XSD Pin
Guinness4Strength23-Jul-08 6:13
Guinness4Strength23-Jul-08 6:13 
Question<xs:import namespace="http://microsoft.com/wsdl/types/" xmlns:xs="#unknown" /> Pin
Guinness4Strength23-Jul-08 5:44
Guinness4Strength23-Jul-08 5:44 
Questionxml reading using vc++ Pin
V K 223-Jul-08 2:52
V K 223-Jul-08 2:52 
AnswerRe: xml reading using vc++ Pin
led mike23-Jul-08 5:25
led mike23-Jul-08 5:25 
QuestionAdding two XmlDocument objects and making as one XmlDocument Pin
indian14322-Jul-08 0:09
indian14322-Jul-08 0:09 
AnswerRe: Adding two XmlDocument objects and making as one XmlDocument Pin
led mike23-Jul-08 5:23
led mike23-Jul-08 5:23 
Questionconvert HTML to XML Pin
r aa j21-Jul-08 1:11
r aa j21-Jul-08 1:11 
AnswerRe: convert HTML to XML Pin
Paddy Boyd21-Jul-08 2:39
Paddy Boyd21-Jul-08 2:39 
AnswerRe: convert HTML to XML Pin
Devang_010126-Jul-08 1:08
Devang_010126-Jul-08 1:08 
QuestionUsing msxml help in Visual c++ 6.0 Pin
rocktx18-Jul-08 6:34
rocktx18-Jul-08 6:34 
QuestionCannot traverse RDLC file using Xpath Pin
Krugger40418-Jul-08 1:31
Krugger40418-Jul-08 1:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.