Click here to Skip to main content
15,905,616 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: XML relational data Pin
toujin4-Jul-05 14:06
toujin4-Jul-05 14:06 
GeneralRe: XML relational data Pin
Member 17770425-Jul-05 9:42
Member 17770425-Jul-05 9:42 
Generalhelp needed for parsing XML document Pin
satishrg1-Jul-05 9:04
satishrg1-Jul-05 9:04 
GeneralRe: help needed for parsing XML document Pin
DavidNohejl1-Jul-05 13:22
DavidNohejl1-Jul-05 13:22 
QuestionWeb Service chat? Pin
wakkerjack1-Jul-05 3:45
wakkerjack1-Jul-05 3:45 
GeneralNeed help creating objects from xml file!! Pin
richiemac30-Jun-05 0:44
richiemac30-Jun-05 0:44 
GeneralRe: Need help creating objects from xml file!! Pin
richiemac1-Jul-05 0:13
richiemac1-Jul-05 0:13 
GeneralRe: Need help creating objects from xml file!! Pin
Gavin Jeffrey1-Jul-05 2:20
Gavin Jeffrey1-Jul-05 2:20 
you may want to have a look at serialization check out http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnexxml/html/xml01202003.asp[^]
or maybe do a search on google for serialization. I think (not sure here) but you need to have an object already defined before you can deserialize xml to it.
Another way (and im not sure if it is a good way) would be to go through the xml similar to this way:
System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
doc.load(xmlSource);
XmlNode screenNode = doc.documentElement.selectSingleNode("//real_time_data_screen")
now you have your screen portion of the xml and you can use that node to select whatever you want from the screen section e.g.
screenNode.selectSingleNode("//screen_title")

Something like that I anyways.
GeneralRe: Need help creating objects from xml file!! Pin
richiemac1-Jul-05 7:03
richiemac1-Jul-05 7:03 
GeneralRe: Need help creating objects from xml file!! Pin
richiemac8-Jul-05 1:01
richiemac8-Jul-05 1:01 
QuestionIE Requirements for DOM and XSLT? Pin
Anonymous29-Jun-05 8:08
Anonymous29-Jun-05 8:08 
AnswerRe: IE Requirements for DOM and XSLT? Pin
DavidNohejl29-Jun-05 8:29
DavidNohejl29-Jun-05 8:29 
AnswerRe: IE Requirements for DOM and XSLT? Pin
Christian Graus29-Jun-05 11:59
protectorChristian Graus29-Jun-05 11:59 
Generalinfopath: need help Pin
Steven M Hunt28-Jun-05 6:37
Steven M Hunt28-Jun-05 6:37 
GeneralNeed resources for C++ & XML Pin
Wheatbread28-Jun-05 5:03
Wheatbread28-Jun-05 5:03 
GeneralRe: Need resources for C++ & XML Pin
DavidNohejl28-Jun-05 7:12
DavidNohejl28-Jun-05 7:12 
GeneralLooking for Developers to try new C++ XML interface. Pin
Stuart Konen25-Jun-05 12:35
Stuart Konen25-Jun-05 12:35 
GeneralXML text reader Pin
letusC#24-Jun-05 11:25
letusC#24-Jun-05 11:25 
GeneralRe: XML text reader Pin
DavidNohejl25-Jun-05 1:24
DavidNohejl25-Jun-05 1:24 
GeneralXML and SAX and C# Pin
letusC#24-Jun-05 11:00
letusC#24-Jun-05 11:00 
GeneralRe: XML and SAX and C# Pin
Michael A. Barnhart24-Jun-05 11:18
Michael A. Barnhart24-Jun-05 11:18 
GeneralXML as data processing Pin
mooncatcher24-Jun-05 9:23
mooncatcher24-Jun-05 9:23 
GeneralRe: XML as data processing Pin
Michael A. Barnhart24-Jun-05 9:42
Michael A. Barnhart24-Jun-05 9:42 
GeneralRe: XML as data processing Pin
Randy_MJ6-Jul-05 5:16
Randy_MJ6-Jul-05 5:16 
GeneralCreation of XML documents Pin
Member 207049024-Jun-05 0:19
Member 207049024-Jun-05 0:19 

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.