ilyawizard
Programmer
I have two questions here. I just started learning XML, which I'd say is really impressive. I might redo all of my sites in XML. But here's my issues:
1. I get an RSS feed from one of my suppliers. I was thinking about using XSL for displaing a feed box on my site, but not really sure yet if I can have this RSS feed stored on my server. Hence the question: is there a way to use XSL on the feed that is stored on the other server? I suspest no, and I know there are parsers that do that, but I don't want to get into this too deep.
2. Let's say I'm able to save xml file on my server. Here's a small example of the feed:
<item>
...
<link>test1.com</link>
<media:thumbnail url="test2.com" width="50" height="50" />
...
</item>
I know how to get the value of the link :
<xsl:value-of select="link"/>
But how do you get the url from media:thumbnale??? I have a book, but didn't find anything useful on this topic. Any help? Also if you know any good online sources on XML and XSL please share. Thanks a lot.
1. I get an RSS feed from one of my suppliers. I was thinking about using XSL for displaing a feed box on my site, but not really sure yet if I can have this RSS feed stored on my server. Hence the question: is there a way to use XSL on the feed that is stored on the other server? I suspest no, and I know there are parsers that do that, but I don't want to get into this too deep.
2. Let's say I'm able to save xml file on my server. Here's a small example of the feed:
<item>
...
<link>test1.com</link>
<media:thumbnail url="test2.com" width="50" height="50" />
...
</item>
I know how to get the value of the link :
<xsl:value-of select="link"/>
But how do you get the url from media:thumbnale??? I have a book, but didn't find anything useful on this topic. Any help? Also if you know any good online sources on XML and XSL please share. Thanks a lot.