george veranis wrote:
> I have a big xml file (16MB approximately) and it is like that:
>
> <products>
> <product>
> <shopid>
> </shopid>
> <title>
> </title>
> <description>
> <description>
> <product>
> </products>
>
> and I want to transform it to a RSS file like that form:
> <channel>
> <title> </title>
> <description> </desription>
> <link>www.mydomain.com/go.jsp?prod=<shopid> <link>
> </channel>
>
> Please if anybody knows to tell which program language I can use to
> transform it.
>
> Thanks in advance!
>
RSS is just another usage of XML for describing data.
Here is someone who wrote a VB.NET website that takes data in a database
and transforms it to RSS.
http://vnwwebdev1/RSSNewsFlash/addnews.aspx
Note: There are multiple RSS specs (1.0, 2.0., 3.0 and variants of
each). Different RSS Readers will respond differently to different
spec versions.