read xml file

chad

New member
Joined
May 20, 2005
Messages
1
I am haveing problems find the right method to read an xml file. I xml file is being send to me as a string and I need to read through it a assign all it attribute to strings that I can use. I have tried using xmlreader along with many other xml class and am having no success. If anyone has any advice it would be greatly appriciated.

Thanks
 
chad said:
I am haveing problems find the right method to read an xml file. I xml file is being send to me as a string and I need to read through it a assign all it attribute to strings that I can use. I have tried using xmlreader along with many other xml class and am having no success. If anyone has any advice it would be greatly appriciated.

Thanks

You could try using a Dataset and reading the xml into it

e.g.
Dataset1.readxml(xmlfilename)

Hope this helps

Andy
 
Any chance you could post the code you have? Or failing that could you post a sample of the XML itself and what kind of things you are wanting to get from it / do with it?
 
Back
Top