Data of the web services in a RSS
        Posted  
        
            by vymz
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by vymz
        
        
        
        Published on 2010-04-07T17:09:13Z
        Indexed on 
            2010/04/07
            17:13 UTC
        
        
        Read the original article
        Hit count: 362
        
rss
|web-services
I only have the .wsdl and I want to put the data that the web services return in the RSS. And in a web page of SAP, I can only upload RSS, so I need put the information of the web services in the RSS
For example, I put the information manually(name and total value) in the fields <title> and <descripcion>, these data are extracted from the web services. But sometimes I don´t know how much information brings the web service. Also, I know that RSS is not to store information such as web services. 
<?xml version="1.0" encoding="UTF-8" ?> 
<rss version="2.0">
<channel>
<title>Test RSS</title>
<link>http://solutions.com</link>
<description>RSS</description>
<item>
    <title>Luiz</title> 
    <link>http://www.solutions.com/prueba1</link> 
    <description>10</description> 
</item>
<item>
    <title>Clodoaldo</title> 
    <link>http://www.solutions.com/prueba2</link> 
    <description>5</description>
</item>
© Stack Overflow or respective owner