<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/32060#M16679</link>
    <description>&lt;P&gt;As far as I know, that is still the only workaround.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Dec 2012 12:15:42 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-12-11T12:15:42Z</dc:date>
    <item>
      <title>Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/2737#M2461</link>
      <description>&lt;P&gt;Hello. I have a successful integration up and running with the following platform details:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Integration method: CIM&lt;/P&gt;&lt;P&gt;Platform: .NET/C#&lt;/P&gt;&lt;P&gt;IDE: Visual Studio 2008&lt;/P&gt;&lt;P&gt;Proxy: WCF web service (ServiceSoapClient)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using the CreateCustomerProfileTransaction&amp;nbsp;method I am taking advantage of the ability to specify transacton options using the&amp;nbsp;&lt;EM&gt;extraOptions&lt;/EM&gt; parameter in the method call as in the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;...

CreateCustomerProfileTransactionResponseType response = cimProxy.CreateCustomerProfileTransaction( credentials, transaction, "x_test_request=FALSE&amp;amp;x_delim_data=TRUE&amp;amp;x_delim_char=|&amp;amp;x_encap_char=;&amp;amp;x_email_customer=FALSE&amp;amp;x_relay_response=FALSE&amp;amp;x_version=3.1&amp;amp;x_duplicate_window=30" )

...&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;EM&gt;x_duplicate_window&lt;/EM&gt; parameter here works great&amp;nbsp;- does exactly what I expect it to. What I'm noticing, however, is that I'm still encountering the default two minute duplicate time window when calling the CreateCustomerProfile method as in the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;...

CreateCustomerProfileResponseType response = client.CreateCustomerProfile( this.Credentials, profile, ValidationModeEnum.liveMode );

...&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that if users make a mistake, say, entering their CVC, when attempting to save their card info, they have to wait two minutes in order to try again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on this, here are my questions:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is there any way to specify &lt;EM&gt;x_duplicate_window&lt;/EM&gt; when calling the CIM CreateCustomerProfile method?&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;If I decide to move away from using the generated WCF proxy class and manually create the xml for the CIM calls, would I have the ability to specify &lt;EM&gt;extraOptions&lt;/EM&gt; then?&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;If neither of the above are possible, can I specify a global setting for this in the Merchant Interface?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2010 16:12:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/2737#M2461</guid>
      <dc:creator>lukes92000</dc:creator>
      <dc:date>2010-04-09T16:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/2793#M2512</link>
      <description>&lt;P&gt;1. No, you must include &amp;lt;validationMode&amp;gt;testMode&amp;lt;/validationMode&amp;gt; in order to prevent a transaction from being attempted during the profile creation if you want to bypass the duplicate window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. No, the XML would be the same. You can only use the &amp;lt;extraOptions&amp;gt; element with the createCustomerProfileTransaction function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. No, you cannot. Again, the best way to bypass the duplicate window would be to process test mode transactions using the &amp;lt;validationMode&amp;gt; element when submitting the create profile function and then follow it with a createCustomerProfileTransaction function to charge the customer, if needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Elaine&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2010 18:07:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/2793#M2512</guid>
      <dc:creator>Elaine</dc:creator>
      <dc:date>2010-04-13T18:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/4053#M3704</link>
      <description>&lt;P&gt;Elaine,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the API examples for C# dotnet and I try adding the extra options when creating a transaction but it doesn't work.&amp;nbsp; I still get the "A duplicate transaction has been submitted" message.&amp;nbsp; Below is the code from the sample.&amp;nbsp; All I did was add the extra options string&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CreateCustomerProfileTransactionResponseType response = Service.CreateCustomerProfileTransaction(MerchantAuthentication, trans, "&amp;lt;extraOptions&amp;gt;&amp;lt;x_duplicate_window=1&amp;gt;&amp;lt;/extraOptions&amp;gt;");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to bill the same profile 2 times with the same amount within seconds of each other, I get the duplicate message.&amp;nbsp; Am I doing something wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2010 20:59:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/4053#M3704</guid>
      <dc:creator>robertogonzalez</dc:creator>
      <dc:date>2010-07-16T20:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/4054#M3705</link>
      <description>&lt;P&gt;For C#,&lt;/P&gt;&lt;P&gt;CreateCustomerProfileTransactionResponseType response = Service.CreateCustomerProfileTransaction(MerchantA&lt;/P&gt;&lt;P&gt;&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;uthentication, trans, "x_duplicate_window=1");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have more options just add and &amp;amp; in between. e.g. "x_version=3.1&amp;amp;x_delim_char=|"&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2010 21:13:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/4054#M3705</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2010-07-16T21:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/4055#M3706</link>
      <description>&lt;P&gt;Raynor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&amp;nbsp; That worked like a charm.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2010 21:22:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/4055#M3706</guid>
      <dc:creator>robertogonzalez</dc:creator>
      <dc:date>2010-07-16T21:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/28826#M15164</link>
      <description>&lt;P&gt;So, just to make sure I understand this, are you suggesting that if we actually want to run a transaction to fully validate the customer's card info (including CCV check, AVS check) AND we want to make this a repeatable process in case the customer makes a mistake, we need to do the following?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;specify testMode for the validation parameter, meaning no transaction is sent to the processor&lt;/LI&gt;&lt;LI&gt;manually authorize our own test transaction with the newly created profile, using a random or incremented amount to avoid the duplicate detection&lt;/LI&gt;&lt;LI&gt;manually void the test transaction&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Is this what everyone does, or do people just cross their fingers and hope that the customer won't make a mistake? &amp;nbsp;That seems a little crazy to me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2012 16:32:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/28826#M15164</guid>
      <dc:creator>jonathanmgrimm</dc:creator>
      <dc:date>2012-08-15T16:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/32048#M16673</link>
      <description>&lt;P&gt;I am wondering the same thing as #jonathanmgrimm. &amp;nbsp;I understand that for his step #2, we can send our own test $.01 transaction with the duplicate transaction window set to 0, and we won't have to increment like he suggested. &amp;nbsp;But other than that, his solution is the same one I'm looking at right now since we have people who enter their CCV incorrectly who are then unknowingly blocked for 2.5 minutes since we can't send a duplicate transaction window with the CreateCustomerPaymentProfile call. &amp;nbsp;If there is really no other way around it than that, then I understand, but would like someone to confirm.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2012 00:57:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/32048#M16673</guid>
      <dc:creator>johnbryantPC</dc:creator>
      <dc:date>2012-12-11T00:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/32060#M16679</link>
      <description>&lt;P&gt;As far as I know, that is still the only workaround.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2012 12:15:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/32060#M16679</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-12-11T12:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/44800#M22692</link>
      <description>&lt;P&gt;Has anyone found a better way to deal with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One way around this is to use a field in the customer that is not needed like 'Company' and put a variable &amp;nbsp;value in that fields on every CreateCustomerPaymentProfile or UpdateCustomerPaymentProfile call to ensure that its not a duplicate transaction each time. But this is a hack&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to find a way to keep the liveMode for validation mode so certain aspects are validated like CVV but be able to not have this Duplicate Transaction Window used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the CIM SOAP API and have found no way to pass the x_duplicate_window parameter into the&amp;nbsp;&lt;SPAN&gt;CreateCustomerPaymentProfile method&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I spoke with Auth.net and they referred me to this forum for help&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyone have any new ideas on this topic?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2014 20:15:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/44800#M22692</guid>
      <dc:creator>cookaf</dc:creator>
      <dc:date>2014-06-23T20:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/44802#M22693</link>
      <description>&lt;P&gt;I don't have a better solution for you with the existing API. However, I would be interested in suggestions on how we could improve the response if we find an existing profile matching the submission.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2014 20:44:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/44802#M22693</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-06-23T20:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/50130#M25627</link>
      <description>&lt;P&gt;Has anyone come up with a solution to this issue?&lt;/P&gt;&lt;P&gt;Is the only work around to modify the customer name or some other value so that it is not a duplicate?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2015 21:00:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/50130#M25627</guid>
      <dc:creator>adamrepzio</dc:creator>
      <dc:date>2015-03-30T21:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/51928#M27235</link>
      <description>&lt;P&gt;Can we at least make the duplicate check time interval length a setting in the merchant preferences? &amp;nbsp;Is there still no solution for this? &amp;nbsp;In my case, i'm using the createCustomerProfileController, and I don't see a way to pass in the&amp;nbsp;&lt;SPAN&gt;x_duplicate_window=1 option, unless someone can help explain that?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2015 00:55:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/51928#M27235</guid>
      <dc:creator>smakus</dc:creator>
      <dc:date>2015-08-28T00:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/57250#M31979</link>
      <description>&lt;P&gt;Hello. I'm running an Authorize.net addon&amp;nbsp;in Woocommerce in Wordpress on WP Engine. Where do I set the Authorize duplicate time to 1 second so if &amp;nbsp;customer enters an incorrect field, then corrects it, that doesn't get entered as a duplicate order and canceled?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2017 02:21:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/57250#M31979</guid>
      <dc:creator>TBrooks</dc:creator>
      <dc:date>2017-03-14T02:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possilbe to set x_duplicate_window when calling CIM method CreateCustomerProfile?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/57264#M31993</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21381"&gt;@TBrooks&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may get faster answers to your question by contacting WooCommerce.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2017 18:29:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Is-it-possilbe-to-set-x-duplicate-window-when-calling-CIM-method/m-p/57264#M31993</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-03-14T18:29:14Z</dc:date>
    </item>
  </channel>
</rss>

