Read remote XML document

mentalhard

Well-known member
Joined
Aug 7, 2006
Messages
123
Programming Experience
Beginner
Read remote XML document [RESOLVED]

I was wondering how to read the XML document that is located on remote server (i know a few ways to read from local xml file but from remote file the same code doesn't work).

I.e. the file is somehwere ;;;; http://www.domain.com/dir/file.xml

the structure looks like following:

HTML:
<?xml version="1.0" encoding="utf-8"?> 
<rootelement> 
 <child>text1</child> 
 <child>text2</child> 
 <child>text3</child> 
</rootelement>

All i need is to fetch the inner text and populate ComboBox with that so the Combo's dropdown displays:

text1
text2
text3

That's it ... thanks a lot
 
Last edited:
Back
Top