Kewego API community forum

Announcement

New API's released

#1 2009-11-03 16:07:25

abonavita
New member
Registered: 2009-09-04
Posts: 4

Error 3036 on setDetails

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

 

#2 2009-11-03 16:12:35

dfugeray
Administrator
Registered: 2008-09-05
Posts: 126

Re: Error 3036 on setDetails

Hi,

Please give us the exact xml datas you send, so that we could make some tests in the same conditions.

Regards,

Offline

 

#3 2009-11-03 17:03:52

abonavita
New member
Registered: 2009-09-04
Posts: 4

Re: Error 3036 on setDetails

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

 

#4 2009-11-03 17:51:46

dfugeray
Administrator
Registered: 2008-09-05
Posts: 126

Re: Error 3036 on setDetails

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

 

Board footer

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson