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!

retrieve XML from another server??? 3

Status
Not open for further replies.

sodax

Programmer
Jun 26, 2003
87
GB
I understand the goal of XML and I have worked with statics XML pages.

in fact I wish to know how can I get XML doc given by a partner (external server) in order to insert it on my site with my own XSLT.

XML doc format (belong to a partner) contains news that vairiate day by day, so my problem is how can I get the xml doc and make it works onto my page by updating it day per day automatically.

thanks a lot.
 
>> I wish to know how can I get XML doc given by a partner (external server)

Ask your partner. We have no idea how his server is set up? [bugeyed]

-pete
 
If the file on the external server always has the same name, you can use the document() function to insert the file.

For example:

<xsl:copy-of select=&quot;document('
Then, if you are using server-side parsing, the file sent back to the client will contain the new information once it is updated on the other server.
 
Hi mulligh, i don't know who thought my post was helpful but i think yours is so i'm marking it so.

Thanks

-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top