<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : Error calling SetExportFlag</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Using ProductCart : Error calling SetExportFlag]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 04:49:38 +0000</pubDate>
  <lastBuildDate>Fri, 21 Oct 2011 15:24:07 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=4808</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[Error calling SetExportFlag : After digging through the source...]]></title>
   <link>https://forum.productcart.com/error-calling-setexportflag_topic4808_post18540.html#18540</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=2386">mgreine</a><br /><strong>Subject:</strong> 4808<br /><strong>Posted:</strong> 21-October-2011 at 3:24pm<br /><br />After digging through the source code (encoded),&nbsp;I found the cause of the issue.&nbsp; The examples don't match what the processing engine is looking for.<DIV>&nbsp;</DIV><DIV>Here's what the code is looking for in a request xml.</DIV><DIV>&nbsp;</DIV><DIV>&lt;SetExportFlagRequest&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PartnerID&gt;removed&lt;/PartnerID&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PartnerPassword&gt;removed&lt;/PartnerPassword&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PartnerKey&gt;removed&lt;/PartnerKey&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Requests&gt;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Request&gt;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ExportedFlag&gt;1&lt;/ExportedFlag&gt;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ExportedID&gt;1234&lt;/ExportedID&gt;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;IDType&gt;2&lt;/IDType&gt;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Request&gt;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Requests&gt;</DIV><DIV>&lt;/SetExportFlagRequest&gt;</DIV><DIV>&nbsp;</DIV><DIV>I am not sure why this is different than all of the other requests and likewise not documented properly in the examples, but it is what it is.</DIV><DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>&nbsp;</DIV><DIV>Mike</DIV>]]>
   </description>
   <pubDate>Fri, 21 Oct 2011 15:24:07 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/error-calling-setexportflag_topic4808_post18540.html#18540</guid>
  </item> 
  <item>
   <title><![CDATA[Error calling SetExportFlag : Hello,  I am using the SDK to...]]></title>
   <link>https://forum.productcart.com/error-calling-setexportflag_topic4808_post18533.html#18533</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=2386">mgreine</a><br /><strong>Subject:</strong> 4808<br /><strong>Posted:</strong> 20-October-2011 at 12:14pm<br /><br />Hello,<DIV>&nbsp;</DIV><DIV>I am using the SDK to retrieve orders from the store site.&nbsp; I am able to successfully retrieve new orders and then the subsequent order and customer details.&nbsp; When I am finished processing that order, I want to set the exported flag to 1.&nbsp; </DIV><DIV>&nbsp;</DIV><DIV>I am receiving an error in the response stating that I am missing a node.</DIV><DIV>&nbsp;</DIV><DIV>Here is my request and response data.</DIV><DIV>&nbsp;</DIV><DIV>Request</DIV><DIV>&lt;?xml version='1.0' encoding='ISO-8859-1' ?&gt;<BR>&lt;SetExportFlagRequest&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;PartnerID&gt;removed&lt;/PartnerID&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;PartnerPassword&gt;removed&lt;/PartnerPassword&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;PartnerKey&gt;removed&lt;/PartnerKey&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;ExportedFlag&gt;1&lt;/ExportedFlag&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;ExportedID&gt;3818&lt;/ExportedID&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;IDType&gt;2&lt;/IDType&gt;<BR>&lt;/SetExportFlagRequest&gt;</DIV><DIV>&nbsp;</DIV><DIV>Response</DIV><DIV>&lt;?xml version="1.0"?&gt;<BR>&lt;SetExportFlagResponse&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;RequestStatus&gt;100&lt;/RequestStatus&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;ErrorList&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ErrorCode&gt;102&lt;/ErrorCode&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ErrorDesc&gt;Invalid XML structure. It does not have a required tag: //Requests/Request/ExportedFlag&lt;/ErrorDesc&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; &lt;/ErrorList&gt;<BR>&lt;/SetExportFlagResponse&gt;</DIV><DIV>&nbsp;</DIV><DIV>I have to be missing something obvious.&nbsp; The partner info is correct because I can retrieve other information using the same generic function.&nbsp; The IDType is for an Order and the ExportedID is the id of the Order.&nbsp; </DIV><DIV>&nbsp;</DIV><DIV>Can someone help me out?</DIV><DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>&nbsp;</DIV><DIV>Mike G</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 20 Oct 2011 12:14:44 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/error-calling-setexportflag_topic4808_post18533.html#18533</guid>
  </item> 
 </channel>
</rss>