You are not logged in.
I am under the impression that if I call setDetails with the same info twice, the second time it will fail with an error code 3036. Is this correct ?
Are there other cases where setDetails will fail with 3036 ?
Does this mean that I always have to check that the details are different from the ones I want to set before calling setDetails ? If yes, then this is definitely an annoying behavior.
Offline
Hi,
Please give us the exact xml datas you send, so that we could make some tests in the same conditions.
Regards,
Offline
SIG : iLyROoafIczx
XML :
<kewego_call>
<params>
<title><![CDATA[Afghanistan : H. Karzaï vainqueur de la présidentielle]]></title>
<description><![CDATA[La Commission électorale indépendante d'Afghanistan a déclaré le chef de l'Etat sortant Hamid Karzaï vainqueur de l'élection présidentielle, après le retrait dimanche de son rival Abdullah Abdullah avant le second tour.]]></description>
<categories><category><![CDATA[INTERNATIONAL]]></category></categories>
<keywords><keyword><![CDATA[afghanistan,abdullah,karzai,presidentielle,election]]></keyword></keywords>
<language>fr</language>
</params>
</kewego_call>
Offline
Hi,
Problem is in your xml data. All keywords need to be seperated.
Try :
<kewego_call>
<params>
<title>
<![CDATA[Afghanistan : H. Karzaï vainqueur de la présidentielle]]></title>
<description>
<![CDATA[La Commission électorale indépendante d'Afghanistan a déclaré le chef de l'Etat sortant Hamid Karzaï vainqueur de l'élection présidentielle, après le retrait dimanche de son rival Abdullah Abdullah avant le second tour.]]></description>
<categories>
<category>
<![CDATA[INTERNATIONAL]]></category>
</categories>
<keywords>
<keyword>
<![CDATA[afghanistan]]></keyword>
<keyword>
<![CDATA[abdullah]]></keyword>
<keyword>
<![CDATA[karzai]]></keyword>
<keyword>
<![CDATA[presidentielle]]></keyword>
<keyword>
<![CDATA[election]]></keyword>
</keywords>
<language>fr</language>
</params>
</kewego_call>
Regards,
Offline