Bonjour,

Je dois créer un agrégateur RSS. J'ai créé un fichier xml au format indiqué sur site. mais quand j'essaie de le tester avec un agrégateur que j'ai télécharger, g un message comme quoi ce n'est pas au bon format. Je n'arrive pas à voir ce qui ne vas pas.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
  <channel>
    <title>W3Schools Home Page</title>
    <link></link>
    <description>Free web building tutorials</description>
    <webMaster>toto</webMaster>
    <category>
    </category>
    <docs>
    </docs>
    <image>
    </image>
    <pubDate>2007-08-10</pubDate>
    <item>
      <title>procédure outlook</title>
      <link>http://www.google.fr</link>
      <description></description>
      <author>toto</author>
      <category></category>
      <comments></comments>
      <pubDate>2007-08-01</pubDate>
      <source></source>
    </item>
  </channel>
</rss>