Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

loading multiple xml streams into one document?

Status
Not open for further replies.

TheNewGirl

Programmer
Oct 5, 2004
1
US
I am sending out multiple calls to different servers and getting back multiple xml. The Xml is coming back via a response.write.

I am calling the scripts on the server as
xmlDoc1.Load("This is one call to one server.
I need to call multiple places depending on what the user
picks on my search screen.

How do I make this call dynamically? Would I have to do a call
and wait for a reply before going on to the next?

I want to merge all the resulting xml into one document in memory and bind it to a datagrid.

Any help will be greatly appreciated.
 
try using

Code:
xmlDoc1.Load("[URL unfurl="true"]http://204.126.123.146/somescript.asp?MR=5")[/URL] 

do loop xmlhttp.readyState <> 4
Parse the xml doc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top