IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

WinDev Discussion :

Pb recherche XML depuis passage à la version 17 [WD17]


Sujet :

WinDev

  1. #1
    Membre actif

    Homme Profil pro
    Enseignant
    Inscrit en
    Août 2006
    Messages
    573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Août 2006
    Messages : 573
    Points : 258
    Points
    258
    Par défaut Pb recherche XML depuis passage à la version 17
    Bonjour,

    Depuis que je suis passé à la version 17 j'ai un problème dans une de mes applications.
    Je fais une requête sur amazon, je récupère un fichier XML.
    Jusque là ça à l'air OK
    Ensuite je fais une recherche dans le code XML et là il ne trouve plus l'information demandée.....

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
    sourceXML est une chaîne= HTTPDonneRésultat(httpRésultat)
    	Trace(sourceXML) => me donne le bon code XML.....
     Creationxml est un booléen=	XMLDocument("info.xml",sourceXML)
     
     
    XMLRacine("info.xml")
    bTestxml est un booléen = XMLRecherche("info.xml","TotalResults",XMLBalise+XMLSousElément,XMLContient)
     
    test2 est un entier =XMLDonnée("info.xml")
    Btestxml me renvoie FAUX.
    Pourtant l'élément est dedans j'ai vérifié.

    Avez vous des idées????
    Pour info en version 16 ça fonctionne toujours......

  2. #2
    Expert éminent
    Avatar de frenchsting
    Homme Profil pro
    multitâches-multifonctions
    Inscrit en
    Juin 2003
    Messages
    5 202
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Meurthe et Moselle (Lorraine)

    Informations professionnelles :
    Activité : multitâches-multifonctions
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2003
    Messages : 5 202
    Points : 9 190
    Points
    9 190
    Par défaut
    Pour cerner le problème (je n'ai pas wd17) : as-tu regardé ton fichier xml. Le contenu est bon ? Il contient bien la chaîne recherchée.

    C'est pour savoir si c'est le xmldocument ou le xmlrecherche qui pose problème.
    Commencez toujours appuyer sur la touche F1 et puis n'hésitez à passer par un moteur de recherche...
    Le forum est fait pour répondre aux questions : pas la peine de me les envoyer par MP. Merci.

    Sur internet, tout est vrai ! Honoré de Balzac
    Make it real not fantasy... Herman Rarebell

  3. #3
    Membre actif

    Homme Profil pro
    Enseignant
    Inscrit en
    Août 2006
    Messages
    573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Août 2006
    Messages : 573
    Points : 258
    Points
    258
    Par défaut
    Bonjour

    Merci pour ta réponse,
    Apparemment le contenu est bon, le pb se situerai plus sur la recherche.

    As tu une idée de comment s'assurer du contenu du code XML.
    Pour le moment j'ai fait un trace que je récupère. Je le colle dans un traitement de texte afin de voir si les données sont les bonnes. En recherchant la sous-clés, je la trouve et elle contient bien les bonnes infos....

    Merci

  4. #4
    Expert éminent
    Avatar de frenchsting
    Homme Profil pro
    multitâches-multifonctions
    Inscrit en
    Juin 2003
    Messages
    5 202
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Meurthe et Moselle (Lorraine)

    Informations professionnelles :
    Activité : multitâches-multifonctions
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2003
    Messages : 5 202
    Points : 9 190
    Points
    9 190
    Par défaut
    pour visualiser directement, tu peux créer un (grand) champ de saisie et faire un
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Sai_xml = fchargetexte(sourceXML)
    Ou, tu peux utliser une liste et l'alimenter avec un pour tout element séparé par RC.

    Pour le reste, en attendant mieux, utilise notepad ++ qui gère très bien le xml. Tu pourras faire tes recherches de sous-clés simplement (http://notepad-plus-plus.org/)

    Cela ne permet pas de trouver une soluce à ton pb. Par contre, tu dois avoir accès au service technique pcsoft, non ? A moins que le nombre d'appel soit déjà atteint ?
    Commencez toujours appuyer sur la touche F1 et puis n'hésitez à passer par un moteur de recherche...
    Le forum est fait pour répondre aux questions : pas la peine de me les envoyer par MP. Merci.

    Sur internet, tout est vrai ! Honoré de Balzac
    Make it real not fantasy... Herman Rarebell

  5. #5
    Membre expérimenté Avatar de Tober
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juillet 2007
    Messages
    824
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : Luxembourg

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Finance

    Informations forums :
    Inscription : Juillet 2007
    Messages : 824
    Points : 1 381
    Points
    1 381
    Par défaut
    Et sinon, ça ne pourrait pas être un problème d'encodage de caractère ?
    Vu que ça marche en v16 et pas en v17 et que la principale nouvelle fonctionnalité est le passage au tout unicode...
    Peut être ton fichier XML est encodé différement.

  6. #6
    Membre actif

    Homme Profil pro
    Enseignant
    Inscrit en
    Août 2006
    Messages
    573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Août 2006
    Messages : 573
    Points : 258
    Points
    258
    Par défaut
    Bonsoir,

    La piste de l'unicode me paraissait pertinente... mais après étude du cas, windev17 continue à exécuter les logiciels des anciennes versions en ANSI....
    on peut faire le passage, un assistant guide mais il est conseillé de rester dans l'ancien système.....
    à suivre.....

  7. #7
    Membre actif

    Homme Profil pro
    Enseignant
    Inscrit en
    Août 2006
    Messages
    573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Août 2006
    Messages : 573
    Points : 258
    Points
    258
    Par défaut
    bonsoir
    voici ce que j'obtiens avec un httdonneresultat() en version 17:[code]
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    519<\r><\n><?xml version="1.0" encoding="UTF-8"?><ItemSearchResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2011-08-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="PC SOFT Framework"></Header></HTTPHeaders><RequestId>0DZDJEZ11TQN8JEPZ35K</RequestId><Arguments><Argument Name="SearchIndex" Value="Blended"></Argument><Argument Name="AssociateTag" Value="at06f4-20"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Keywords" Value="olga au ski"></Argument><Argument Name="Signature" Value="uyHVsOgzFepTbYPqJfFlhmJ5BFsvPwPZZKQlBDi5/Hw="></Argument><Argument Name="ResponseGroup" Value="Large"></Argument><Argument Name="Operation" Value="ItemSearch"></Argument><Argument Name="AWSAccessKeyId" Value="macleperso"></Argument><Argument Name="Timestamp" Value="2012-01-17T18:41:41.000Z"></Argument><Argument Name="Version" Value="2011-08-01"></Argument></Arguments><RequestProcessingTime>0.155311107635498</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Keywords>olga au ski</Keywords><ResponseGroup>Large</ResponseGroup><SearchIndex>Blended</SearchIndex></ItemSearchRequest></Request><TotalResults>4</TotalResults><TotalPages>2</TotalPages><SearchResultsMap><SearchIndex><IndexNam<\r><\n>5b4<\r><\n>e>Books</IndexName><Results>4</Results><Pages>2</Pages><RelevanceRank>53</RelevanceRank><ASIN>2211046231</ASIN><ASIN>2211034268</ASIN><ASIN>2211042317</ASIN></SearchIndex></SearchResultsMap><Item><ASIN>2211046231</ASIN><DetailPageURL>http://www.amazon.fr/Olga-au-ski-Genevi%C3%A8ve-Brisac/dp/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2211046231</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2211046231%26SubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211046231</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211046231</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211046231</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26crea<\r><\n>1458<\r><\n>tive%3D12742%26creativeASIN%3D2211046231</URL></ItemLink></ItemLinks><SalesRank>196568</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL500_.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">317</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">20</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">73</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL500_.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">317</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Geneviève Brisac</Author><Author>Michel Gay</Author><Binding>Poche</Binding><Creator Role="Auteur">Geneviève Brisac</Creator><Creator Role="Auteur">Michel Gay</Creator><EAN>9782211046237</EAN><EANList><EANListElement>9782211046237</EANListElement></EANList><ISBN>2211046231</ISBN><Label>L'Ecole des loisirs</Label><ListPrice><Amount>460</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 4,60</FormattedPrice></ListPrice><Manufacturer>L'Ecole des loisirs</Manufacturer><NumberOfPages>69</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">39</Height><Length Units="hundredths-inches">748</Length><Weight Units="hundredths-pounds">24</Weight><Width Units="hundredths-inches">512</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1992-07-31</PublicationDate><Publisher>L'Ecole des loisirs</Publisher><SKU>9782211046237</SKU><Studio>L'Ecole des loisirs</Studio><Title>Olga au ski</Title></ItemAttributes><OfferSummary><LowestUsedPrice><Amount>600</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 6,00</FormattedPrice></LowestUsedPrice><TotalNew>0</TotalNew><TotalUsed>3</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>0</TotalOffers><TotalOfferPages>0</TotalOfferPages><MoreOffersUrl>http://www.amazon.fr/gp/offer-listing/2211046231/?SubscriptionId=AKIAIT6C2E2TYT3SOQPQ&amp;ie=UTF8&amp;tag=at06f4-20&amp;creative=12742&amp;camp=2025&amp;linkCode=xm2</MoreOffersUrl></Offers><CustomerReviews><IFrameURL>http://www.amazon.fr/reviews/iframe?akid=AKIAIT6C2E2TYT3SOQPQ&amp;alinkCode=xm2&amp;asin=2211046231&amp;atag=at06f4-20&amp;exp=2012-01-18T18%3A41%3A50Z&amp;v=2&amp;sig=SA%2FZnZafZT2mCwB0bcBFrJkKaN8uVgZwZd3Q2%2BPdfvc%3D</IFrameURL><HasReviews>false</HasReviews></CustomerReviews><SimilarProducts><SimilarProduct><ASIN>2745925504</ASIN><Title>La station de ski</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>1048122</BrowseNodeId><Name>Olga</Name><Ancestors><BrowseNode><BrowseNodeId>1026848</BrowseNodeId><Name>Héros de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>489920</BrowseNodeId><Name>Famille</Name><Ancestors><BrowseNode><BrowseNodeId>466276</BrowseNodeId><Name>Romans</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>301132</BrowseNodeId><Name>Littérature</Name><Children><BrowseNode><BrowseNodeId>302038</BrowseNodeId><Name>Littérature française</Name></BrowseNode><BrowseNode><BrowseNodeId>464084</BrowseNodeId><Name>Littérature américaine</Name></BrowseNode><BrowseNode><BrowseNodeId>464044</BrowseNodeId><Name>Littérature anglaise</Name></BrowseNode><BrowseNode><BrowseNodeId>464136</BrowseNodeId><Name>Littérature espagnole</Name></BrowseNode><BrowseNode><Browse<\r><\n>db<\r><\n>NodeId>464154</BrowseNodeId><Name>Littérature italienne</Name></BrowseNode><BrowseNode><BrowseNodeId>464152</BrowseNodeId><Name>Littérature japonaise</Name></BrowseNode><BrowseNode><BrowseNodeId>464158</BrowseNodeId><<\r><\n>4d1<\r><\n>Name>Littérature russe</Name></BrowseNode><BrowseNode><BrowseNodeId>302040</BrowseNodeId><Name>Autres littératures étrangères</Name></BrowseNode><BrowseNode><BrowseNodeId>302036</BrowseNodeId><Name>Poésie</Name></BrowseNode><BrowseNode><BrowseNodeId>302037</BrowseNodeId><Name>Théâtre</Name></BrowseNode><BrowseNode><BrowseNodeId>302047</BrowseNodeId><Name>Biographies</Name></BrowseNode><BrowseNode><BrowseNodeId>302046</BrowseNodeId><Name>Correspondances et mémoires</Name></BrowseNode><BrowseNode><BrowseNodeId>405920011</BrowseNodeId><Name>Littérature humoristique</Name></BrowseNode><BrowseNode><BrowseNodeId>1064926</BrowseNodeId><Name>Livres de référence</Name></BrowseNode><BrowseNode><BrowseNodeId>302043</BrowseNodeId><Name>Romans historiques</Name></BrowseNode><BrowseNode><BrowseNodeId>302045</BrowseNodeId><Name>Récits de voyages</Name></BrowseNode><BrowseNode><BrowseNodeId>302041</BrowseNodeId><Name>Érotisme</Name></BrowseNode><BrowseNode><BrowseNodeId>302048</BrowseNodeId><Name>Antiquité</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres<<\r><\n>b68<\r><\n>/Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>492481011</BrowseNodeId><Name>Poche et Broché</Name><Ancestors><BrowseNode><BrowseNodeId>492479011</BrowseNodeId><Name>Format (binding_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>182102031</BrowseNodeId><Name>Caractères standards</Name><Ancestors><BrowseNode><BrowseNodeId>182100031</BrowseNodeId><Name>Font Size (format_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>2211034268</ASIN><DetailPageURL>http://www.amazon.fr/Olga-au-ski-Brisac-Genevieve/dp/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2211034268</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2211034268%26SubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink></ItemLinks><SmallImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">51</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">110</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL500_.jpg</URL><Height Units="pixels">480</Height><Width Units="pixels">329</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL30_.jpg</URL><Height Uni<\r><\n>fc7<\r><\n>ts="pixels">30</Height><Width Units="pixels">21</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">51</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">51</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">75</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">110</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL500_.jpg</URL><Height Units="pixels">480</Height><Width Units="pixels">329</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Brisac Genevieve</Author><Binding>Broché</Binding><Creator Role="Auteur">Brisac Genevieve</Creator><EAN>9782211034265</EAN><EANList><EANListElement>9782211034265</EANListElement></EANList><Edition>Ecole des Loisirs.</Edition><ISBN>2211034268</ISBN><Label>L'ecole des loisirs</Label><Manufacturer>L'ecole des loisirs</Manufacturer><ProductGroup>Book</ProductGroup><ProductTypeName>BOOKS_1973_AND_LATER</ProductTypeName><PublicationDate>1992</PublicationDate><Publisher>L'ecole des loisirs</Publisher><Studio>L'ecole des loisirs</Studio><Title>Olga au ski</Title></ItemAttributes><OfferSummary><LowestUsedPrice><Amount>121</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 1,21</FormattedPrice></LowestUsedPrice><TotalNew>0</TotalNew><TotalUsed>9</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>0</TotalOffers><TotalOfferPages>0</TotalOfferPages><MoreOffersUrl>http://www.amazon.fr/gp/offer-listing/2211034268/?SubscriptionId=AKIAIT6C2E2TYT3SOQPQ&amp;ie=UTF8&amp;tag=at06f4-20&amp;creative=12742&amp;camp=2025&amp;linkCode=xm2</MoreOffersUrl></Offers><CustomerReviews><IFrameURL>http://www.amazon.fr/reviews/iframe?akid=AKIAIT6C2E2TYT3SOQPQ&amp;alinkCode=xm2&amp;asin=2211034268&amp;atag=at06f4-20&amp;exp=2012-01-18T18%3A41%3A50Z&amp;v=2&amp;sig=ThP3QYZ8XUHwt%2FcVhVWGf32brZBgGKykbUHVUQWu3A8%3D</IFrameURL><HasReviews>false</HasReviews></CustomerReviews><BrowseNodes><BrowseNode><BrowseNodeId>1048122</BrowseNodeId><Name>Olga</Name><Ancestors><BrowseNode><BrowseNodeId>1026848</BrowseNodeId><Name>Héros de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>561148</BrowseNodeId><Name>Ski</Name><Children><BrowseNode><BrowseNodeId>561172</BrowseNodeId><Name>Compétition</Name></BrowseNode><BrowseNode><BrowseNodeId>561170</BrowseNodeId><Name>Histoire du ski</Name></BrowseNode><BrowseNode><BrowseNodeId>561166</BrowseNodeId><Name>Monoski</Name></BrowseNode><BrowseNode><BrowseNodeId>561164</BrowseNodeId><Name>Pas du patineur</Name></BrowseNode><BrowseNode><BrowseNodeId>561154</BrowseNodeId><Name>Ski alpin</Name></BrowseNode><BrowseNode><BrowseNodeId>561152</BrowseNodeId><Name>Ski de fond</Name></BrowseNode><BrowseNode><BrowseNodeId>561156</BrowseNodeId><Name>Ski de randonnée</Name></BrowseNode><BrowseNode><BrowseNodeId>561158</BrowseNodeId><Name>Ski hors piste</Name></BrowseNode><BrowseNode><BrowseNodeId>561174</BrowseNodeId><Name>Stations de ski</Name></BrowseNode><BrowseNode><BrowseNodeId>561162</BrowseNodeId><Name>Surf des neiges</Name></BrowseNode><BrowseNode><BrowseNodeId>561160</BrowseNodeId><Name>Télémark</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>406922</BrowseNodeId><Name>Sports de montagne</<\r><\n>f71<\r><\n>Name><Ancestors><BrowseNode><BrowseNodeId>302049</BrowseNodeId><Name>Sports de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301143</BrowseNodeId><Name>Sports et autres loisirs</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>492481011</BrowseNodeId><Name>Poche et Broché</Name><Ancestors><BrowseNode><BrowseNodeId>492479011</BrowseNodeId><Name>Format (binding_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>182102031</BrowseNodeId><Name>Caractères standards</Name><Ancestors><BrowseNode><BrowseNodeId>182100031</BrowseNodeId><Name>Font Size (format_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>2211042317</ASIN><DetailPageURL>http://www.amazon.fr/Olga-au-ski-Brisac/dp/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2211042317</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2211042317%26SubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink></ItemLinks><SalesRank>1212204</SalesRank><ItemAttributes><Author>Brisac</Author><Binding>Broché</Binding><Creator Role="Auteur">Brisac</Creator><EAN>9782211042314</EAN><EANList><EANListElement>9782211042314</EANListElement></EANList><ISBN>2211042317</ISBN><Label>Ecole des loisirs</Label><Manufacturer>Ecole des loisirs</Manufacturer><PackageDimensions><Height Units="hundredths-inches">39</Height><Length Units="hundredths-inches">866</Length><Weight Units="hundredths-pounds">49</Weight><Width Units="hundredths-inches">630</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1991-10-01</PublicationDate><Publisher>Ecole des loisirs</Publisher><Studio>Ecole des loisirs</Studio><Title>Olga au ski</Title></ItemAttributes><OfferSummary><LowestUsedPrice><Amount>549</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 5,49</FormattedPrice></LowestUsedPrice><TotalNew>0</TotalNew><TotalUsed>2</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>0</TotalOffers><TotalOfferPages>0</TotalOfferPages><MoreOffersUrl>http://www.amazon.fr/gp/offer-listing/2211042317/?SubscriptionId=AKIAIT6C2E2TYT<\r><\n>1c<\r><\n>3SOQPQ&amp;ie=UTF8&amp;tag=a<\r><\n>73d<\r><\n>t06f4-20&amp;creative=12742&amp;camp=2025&amp;linkCode=xm2</MoreOffersUrl></Offers><CustomerReviews><IFrameURL>http://www.amazon.fr/reviews/iframe?akid=AKIAIT6C2E2TYT3SOQPQ&amp;alinkCode=xm2&amp;asin=2211042317&amp;atag=at06f4-20&amp;exp=2012-01-18T18%3A41%3A50Z&amp;v=2&amp;sig=%2FZfsZm7EuSRKIHxWquZGRL1hwpRbtDdfi%2BGF3YWY9Cc%3D</IFrameURL><HasReviews>false</HasReviews></CustomerReviews><BrowseNodes><BrowseNode><BrowseNodeId>1048122</BrowseNodeId><Name>Olga</Name><Ancestors><BrowseNode><BrowseNodeId>1026848</BrowseNodeId><Name>Héros de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>492481011</BrowseNodeId><Name>Poche et Broché</Name><Ancestors><BrowseNode><BrowseNodeId>492479011</BrowseNodeId><Name>Format (binding_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>182102031</BrowseNodeId><Name>Caractères standards</Name><Ancestors><BrowseNode><BrowseNodeId>182100031</BrowseNodeId><Name>Font Size (format_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item></Items></ItemSearchResponse><\r><\n>0<\r><\n><\r><\n>
    et voici ce que j'ai en version 16 qui fonctionne:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <?xml version="1.0" encoding="UTF-8"?><ItemSearchResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2011-08-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="PC SOFT Framework"></Header></HTTPHeaders><RequestId>06JBP45BQZX7PQQWQ8XD</RequestId><Arguments><Argument Name="SearchIndex" Value="Blended"></Argument><Argument Name="AssociateTag" Value="at06f4-20"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Keywords" Value="olga au ski"></Argument><Argument Name="Signature" Value="MwJJFKBJwQP13fLpBoaHcNeKqTZNyScvATkbk5bsdxM="></Argument><Argument Name="ResponseGroup" Value="Large"></Argument><Argument Name="Operation" Value="ItemSearch"></Argument><Argument Name="AWSAccessKeyId" Value="macleperso"></Argument><Argument Name="Timestamp" Value="2012-01-17T21:49:28.000Z"></Argument><Argument Name="Version" Value="2011-08-01"></Argument></Arguments><RequestProcessingTime>0.161293029785156</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Keywords>olga au ski</Keywords><ResponseGroup>Large</ResponseGroup><SearchIndex>Blended</SearchIndex></ItemSearchRequest></Request><TotalResults>4</TotalResults><TotalPages>2</TotalPages><SearchResultsMap><SearchIndex><IndexName>Books</IndexName><Results>4</Results><Pages>2</Pages><RelevanceRank>53</RelevanceRank><ASIN>2211046231</ASIN><ASIN>2211034268</ASIN><ASIN>2211042317</ASIN></SearchIndex></SearchResultsMap><Item><ASIN>2211046231</ASIN><DetailPageURL>http://www.amazon.fr/Olga-au-ski-Genevi%C3%A8ve-Brisac/dp/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2211046231</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2211046231%26SubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211046231</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211046231</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211046231</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2211046231%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211046231</URL></ItemLink></ItemLinks><SalesRank>198580</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL500_.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">317</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">20</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">73</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41J8W0QVE6L._SL500_.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">317</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Geneviève Brisac</Author><Author>Michel Gay</Author><Binding>Poche</Binding><Creator Role="Auteur">Geneviève Brisac</Creator><Creator Role="Auteur">Michel Gay</Creator><EAN>9782211046237</EAN><EANList><EANListElement>9782211046237</EANListElement></EANList><ISBN>2211046231</ISBN><Label>L'Ecole des loisirs</Label><ListPrice><Amount>460</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 4,60</FormattedPrice></ListPrice><Manufacturer>L'Ecole des loisirs</Manufacturer><NumberOfPages>69</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">39</Height><Length Units="hundredths-inches">748</Length><Weight Units="hundredths-pounds">24</Weight><Width Units="hundredths-inches">512</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1992-07-31</PublicationDate><Publisher>L'Ecole des loisirs</Publisher><SKU>9782211046237</SKU><Studio>L'Ecole des loisirs</Studio><Title>Olga au ski</Title></ItemAttributes><OfferSummary><LowestUsedPrice><Amount>600</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 6,00</FormattedPrice></LowestUsedPrice><TotalNew>0</TotalNew><TotalUsed>3</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>0</TotalOffers><TotalOfferPages>0</TotalOfferPages><MoreOffersUrl>http://www.amazon.fr/gp/offer-listing/2211046231/?SubscriptionId=AKIAIT6C2E2TYT3SOQPQ&amp;ie=UTF8&amp;tag=at06f4-20&amp;creative=12742&amp;camp=2025&amp;linkCode=xm2</MoreOffersUrl></Offers><CustomerReviews><IFrameURL>http://www.amazon.fr/reviews/iframe?akid=AKIAIT6C2E2TYT3SOQPQ&amp;alinkCode=xm2&amp;asin=2211046231&amp;atag=at06f4-20&amp;exp=2012-01-18T21%3A49%3A36Z&amp;v=2&amp;sig=JBwkSRor2ngzckLxe5aWCwROFq1aKzzWdbh%2FNuNTPnQ%3D</IFrameURL><HasReviews>false</HasReviews></CustomerReviews><SimilarProducts><SimilarProduct><ASIN>2745925504</ASIN><Title>La station de ski</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>1048122</BrowseNodeId><Name>Olga</Name><Ancestors><BrowseNode><BrowseNodeId>1026848</BrowseNodeId><Name>Héros de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>489920</BrowseNodeId><Name>Famille</Name><Ancestors><BrowseNode><BrowseNodeId>466276</BrowseNodeId><Name>Romans</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>301132</BrowseNodeId><Name>Littérature</Name><Children><BrowseNode><BrowseNodeId>302038</BrowseNodeId><Name>Littérature française</Name></BrowseNode><BrowseNode><BrowseNodeId>464084</BrowseNodeId><Name>Littérature américaine</Name></BrowseNode><BrowseNode><BrowseNodeId>464044</BrowseNodeId><Name>Littérature anglaise</Name></BrowseNode><BrowseNode><BrowseNodeId>464136</BrowseNodeId><Name>Littérature espagnole</Name></BrowseNode><BrowseNode><BrowseNodeId>464154</BrowseNodeId><Name>Littérature italienne</Name></BrowseNode><BrowseNode><BrowseNodeId>464152</BrowseNodeId><Name>Littérature japonaise</Name></BrowseNode><BrowseNode><BrowseNodeId>464158</BrowseNodeId><Name>Littérature russe</Name></BrowseNode><BrowseNode><BrowseNodeId>302040</BrowseNodeId><Name>Autres littératures étrangères</Name></BrowseNode><BrowseNode><BrowseNodeId>302036</BrowseNodeId><Name>Poésie</Name></BrowseNode><BrowseNode><BrowseNodeId>302037</BrowseNodeId><Name>Théâtre</Name></BrowseNode><BrowseNode><BrowseNodeId>302047</BrowseNodeId><Name>Biographies</Name></BrowseNode><BrowseNode><BrowseNodeId>302046</BrowseNodeId><Name>Correspondances et mémoires</Name></BrowseNode><BrowseNode><BrowseNodeId>405920011</BrowseNodeId><Name>Littérature humoristique</Name></BrowseNode><BrowseNode><BrowseNodeId>1064926</BrowseNodeId><Name>Livres de référence</Name></BrowseNode><BrowseNode><BrowseNodeId>302043</BrowseNodeId><Name>Romans historiques</Name></BrowseNode><BrowseNode><BrowseNodeId>302045</BrowseNodeId><Name>Récits de voyages</Name></BrowseNode><BrowseNode><BrowseNodeId>302041</BrowseNodeId><Name>Érotisme</Name></BrowseNode><BrowseNode><BrowseNodeId>302048</BrowseNodeId><Name>Antiquité</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>492481011</BrowseNodeId><Name>Poche et Broché</Name><Ancestors><BrowseNode><BrowseNodeId>492479011</BrowseNodeId><Name>Format (binding_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>182102031</BrowseNodeId><Name>Caractères standards</Name><Ancestors><BrowseNode><BrowseNodeId>182100031</BrowseNodeId><Name>Font Size (format_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>2211034268</ASIN><DetailPageURL>http://www.amazon.fr/Olga-au-ski-Brisac-Genevieve/dp/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2211034268</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2211034268%26SubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2211034268%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211034268</URL></ItemLink></ItemLinks><SmallImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">51</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">110</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL500_.jpg</URL><Height Units="pixels">480</Height><Width Units="pixels">329</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">21</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">51</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">51</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">75</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">110</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41MJZ1oJTGL._SL500_.jpg</URL><Height Units="pixels">480</Height><Width Units="pixels">329</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Brisac Genevieve</Author><Binding>Broché</Binding><Creator Role="Auteur">Brisac Genevieve</Creator><EAN>9782211034265</EAN><EANList><EANListElement>9782211034265</EANListElement></EANList><Edition>Ecole des Loisirs.</Edition><ISBN>2211034268</ISBN><Label>L'ecole des loisirs</Label><Manufacturer>L'ecole des loisirs</Manufacturer><ProductGroup>Book</ProductGroup><ProductTypeName>BOOKS_1973_AND_LATER</ProductTypeName><PublicationDate>1992</PublicationDate><Publisher>L'ecole des loisirs</Publisher><Studio>L'ecole des loisirs</Studio><Title>Olga au ski</Title></ItemAttributes><OfferSummary><LowestUsedPrice><Amount>121</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 1,21</FormattedPrice></LowestUsedPrice><TotalNew>0</TotalNew><TotalUsed>9</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>0</TotalOffers><TotalOfferPages>0</TotalOfferPages><MoreOffersUrl>http://www.amazon.fr/gp/offer-listing/2211034268/?SubscriptionId=AKIAIT6C2E2TYT3SOQPQ&amp;ie=UTF8&amp;tag=at06f4-20&amp;creative=12742&amp;camp=2025&amp;linkCode=xm2</MoreOffersUrl></Offers><CustomerReviews><IFrameURL>http://www.amazon.fr/reviews/iframe?akid=AKIAIT6C2E2TYT3SOQPQ&amp;alinkCode=xm2&amp;asin=2211034268&amp;atag=at06f4-20&amp;exp=2012-01-18T21%3A49%3A36Z&amp;v=2&amp;sig=yw3onF22DOo%2BOCiww8Tr1CZGOuwcMTKh4rimD52rsqI%3D</IFrameURL><HasReviews>false</HasReviews></CustomerReviews><BrowseNodes><BrowseNode><BrowseNodeId>1048122</BrowseNodeId><Name>Olga</Name><Ancestors><BrowseNode><BrowseNodeId>1026848</BrowseNodeId><Name>Héros de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>561148</BrowseNodeId><Name>Ski</Name><Children><BrowseNode><BrowseNodeId>561172</BrowseNodeId><Name>Compétition</Name></BrowseNode><BrowseNode><BrowseNodeId>561170</BrowseNodeId><Name>Histoire du ski</Name></BrowseNode><BrowseNode><BrowseNodeId>561166</BrowseNodeId><Name>Monoski</Name></BrowseNode><BrowseNode><BrowseNodeId>561164</BrowseNodeId><Name>Pas du patineur</Name></BrowseNode><BrowseNode><BrowseNodeId>561154</BrowseNodeId><Name>Ski alpin</Name></BrowseNode><BrowseNode><BrowseNodeId>561152</BrowseNodeId><Name>Ski de fond</Name></BrowseNode><BrowseNode><BrowseNodeId>561156</BrowseNodeId><Name>Ski de randonnée</Name></BrowseNode><BrowseNode><BrowseNodeId>561158</BrowseNodeId><Name>Ski hors piste</Name></BrowseNode><BrowseNode><BrowseNodeId>561174</BrowseNodeId><Name>Stations de ski</Name></BrowseNode><BrowseNode><BrowseNodeId>561162</BrowseNodeId><Name>Surf des neiges</Name></BrowseNode><BrowseNode><BrowseNodeId>561160</BrowseNodeId><Name>Télémark</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>406922</BrowseNodeId><Name>Sports de montagne</Name><Ancestors><BrowseNode><BrowseNodeId>302049</BrowseNodeId><Name>Sports de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301143</BrowseNodeId><Name>Sports et autres loisirs</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>492481011</BrowseNodeId><Name>Poche et Broché</Name><Ancestors><BrowseNode><BrowseNodeId>492479011</BrowseNodeId><Name>Format (binding_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>182102031</BrowseNodeId><Name>Caractères standards</Name><Ancestors><BrowseNode><BrowseNodeId>182100031</BrowseNodeId><Name>Font Size (format_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>2211042317</ASIN><DetailPageURL>http://www.amazon.fr/Olga-au-ski-Brisac/dp/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2211042317</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2211042317%26SubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2211042317%3FSubscriptionId%3DAKIAIT6C2E2TYT3SOQPQ%26tag%3Dat06f4-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2211042317</URL></ItemLink></ItemLinks><SalesRank>1212467</SalesRank><ItemAttributes><Author>Brisac</Author><Binding>Broché</Binding><Creator Role="Auteur">Brisac</Creator><EAN>9782211042314</EAN><EANList><EANListElement>9782211042314</EANListElement></EANList><ISBN>2211042317</ISBN><Label>Ecole des loisirs</Label><Manufacturer>Ecole des loisirs</Manufacturer><PackageDimensions><Height Units="hundredths-inches">39</Height><Length Units="hundredths-inches">866</Length><Weight Units="hundredths-pounds">49</Weight><Width Units="hundredths-inches">630</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1991-10-01</PublicationDate><Publisher>Ecole des loisirs</Publisher><Studio>Ecole des loisirs</Studio><Title>Olga au ski</Title></ItemAttributes><OfferSummary><LowestUsedPrice><Amount>549</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 5,49</FormattedPrice></LowestUsedPrice><TotalNew>0</TotalNew><TotalUsed>2</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>0</TotalOffers><TotalOfferPages>0</TotalOfferPages><MoreOffersUrl>http://www.amazon.fr/gp/offer-listing/2211042317/?SubscriptionId=AKIAIT6C2E2TYT3SOQPQ&amp;ie=UTF8&amp;tag=at06f4-20&amp;creative=12742&amp;camp=2025&amp;linkCode=xm2</MoreOffersUrl></Offers><CustomerReviews><IFrameURL>http://www.amazon.fr/reviews/iframe?akid=AKIAIT6C2E2TYT3SOQPQ&amp;alinkCode=xm2&amp;asin=2211042317&amp;atag=at06f4-20&amp;exp=2012-01-18T21%3A49%3A36Z&amp;v=2&amp;sig=P6x2xgHZc0IvwDxbnmPNyemrCj33YgETNMHMhWVNF6M%3D</IFrameURL><HasReviews>false</HasReviews></CustomerReviews><BrowseNodes><BrowseNode><BrowseNodeId>1048122</BrowseNodeId><Name>Olga</Name><Ancestors><BrowseNode><BrowseNodeId>1026848</BrowseNodeId><Name>Héros de A Ã* Z</Name><Ancestors><BrowseNode><BrowseNodeId>301137</BrowseNodeId><Name>Jeunesse</Name><Ancestors><BrowseNode><BrowseNodeId>301130</BrowseNodeId><Name>Thèmes</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>492481011</BrowseNodeId><Name>Poche et Broché</Name><Ancestors><BrowseNode><BrowseNodeId>492479011</BrowseNodeId><Name>Format (binding_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>182102031</BrowseNodeId><Name>Caractères standards</Name><Ancestors><BrowseNode><BrowseNodeId>182100031</BrowseNodeId><Name>Font Size (format_browse-bin)</Name><Ancestors><BrowseNode><BrowseNodeId>366469011</BrowseNodeId><Name>Refinements</Name><Ancestors><BrowseNode><BrowseNodeId>301061</BrowseNodeId><Name>Livres</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item></Items></ItemSearchResponse>
    J'ai quelques balises de plus mais d'où sortent t'elles????
    Est ce L'unicode comme le laissait entendre Tober???

  8. #8
    Membre expert

    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juin 2004
    Messages
    2 328
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : France, Calvados (Basse Normandie)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2004
    Messages : 2 328
    Points : 3 841
    Points
    3 841
    Par défaut
    En effet, cela semble provenir de cela.

    Si tu regardes, le <BrowseNode> avec <BrowseNodeId>301130, la valeur de <Name> est différente :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    Thèmes en 17
    Thèmes en 16

  9. #9
    Membre expérimenté Avatar de Tober
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juillet 2007
    Messages
    824
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : Luxembourg

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Finance

    Informations forums :
    Inscription : Juillet 2007
    Messages : 824
    Points : 1 381
    Points
    1 381
    Par défaut
    Je viens de resurvoler les nouveautés de WD17, et ils disent qu'ils faut faire gaffe avec les applis passé de 16 à 17 qui gère des fichiers venus de l'extérieur. (donc ton fichier XML).
    Tu devrais essayer de jouer avec les fonctions UTF8VersChaine et autre.
    Tu devrais peut être essayer aussi de passer ton projet en Unicode vu que de tout facon ton bug prouve que la rétrocompatibilité de l'avant Unicode ne marche pas.

    En esperant avoir aider, bonne chance

  10. #10
    Membre du Club
    Homme Profil pro
    Inscrit en
    Novembre 2007
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 53
    Localisation : France, Seine Maritime (Haute Normandie)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 21
    Points : 61
    Points
    61
    Par défaut
    Citation Envoyé par mnssylvain Voir le message
    J'ai quelques balises de plus mais d'où sortent t'elles????
    Est ce L'unicode comme le laissait entendre Tober???
    Apparemment non, c'était bien un bug référencé dans la version WD17/56g.
    Le bug a été corrigé dans la 61h.

    Il y avait certains caractères supplémentaires dans la récupération via httpDonneResultat.

    Le sujet peut être cloturé.

    Dominique DAUSSY

  11. #11
    Membre actif

    Homme Profil pro
    Enseignant
    Inscrit en
    Août 2006
    Messages
    573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Août 2006
    Messages : 573
    Points : 258
    Points
    258
    Par défaut
    Bonjour,

    Pris par d'autres projets j'ai quand même testé mes applis avec la nouvelle version de Windev et effectivement ça fonctionne à nouveau OUFFFF !!!!
    Merci à tous pour vos messages....

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [SP-2007] Problème recherche MOSS depuis passage en SP2
    Par unattend dans le forum SharePoint
    Réponses: 1
    Dernier message: 11/02/2010, 14h42
  2. Problème d'écriture dans un xml depuis Delphi
    Par MABB dans le forum Delphi .NET
    Réponses: 3
    Dernier message: 26/07/2006, 15h53
  3. erreur de segmentation depuis passage a OO
    Par hansaplast dans le forum C++
    Réponses: 15
    Dernier message: 27/04/2006, 12h27
  4. Formulaire de recherche prêt à l'emploi (nouvelle version)
    Par Darlay Jean_Louis dans le forum IHM
    Réponses: 2
    Dernier message: 24/11/2005, 11h29
  5. Recupération de données XML depuis une URL
    Par tonymo dans le forum Format d'échange (XML, JSON...)
    Réponses: 27
    Dernier message: 21/11/2005, 13h48

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo