<?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: Accept.js encryption failed in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/63933#M37946</link>
    <description>&lt;P&gt;I just tested again and I don't have the issue anymore. My code has changed since so I will post my working code below. However, I reverted to the old version of the&amp;nbsp;sendPaymentDataToAnet() function (in my original post) and I DO get the "encryption failed" error but my responseHandler() function DOES NOT get called twice so I'm not sure what else I changed outside of this code to resolve the duplicate call. However, either way, the code below should work for you since it's working for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sendPaymentDataToAnet = (event, paymentProfile) =&amp;gt; {
        console.log("sendPaymentDataToAnet()");
        event.preventDefault();
        this.setState({ processing: true });

        var authData = {};
            authData.clientKey = this.state.clientKey;
            authData.apiLoginID = this.state.apiLoginID;

        var cardData = {};
            cardData.cardNumber = paymentProfile.cardNumber;
            cardData.month = paymentProfile.expMonth;
            cardData.year = paymentProfile.expYear;
            cardData.cardCode = paymentProfile.cardCode;

        var secureData = {};
            secureData.authData = authData;
            secureData.cardData = cardData;

        let lastResponse = null;

        Accept.dispatchData(secureData, response =&amp;gt; {
            // just in case it still gets called twice, ignore the second call
            if (response == lastResponse) {
                console.log("skipping duplicated responseHandler() call because it's the same response as the previous response");
                return;
            }
            lastResponse = response;

            console.log("responseHandler function called");
            if (response.messages.resultCode === "Error") {
                // stopLoading();
                var i = 0;
                while (i &amp;lt; response.messages.message.length) {
                    console.log(
                        response.messages.message[i].code + ": " +
                        response.messages.message[i].text
                    );
                    // only show the user the first error message
                    if (i == 0) {
                        var error = response.messages.message[i].text;
                        console.error("Error", error);
                    }	
                    i = i + 1;
                }
            } else {
                this.paymentFormUpdate(response.opaqueData, paymentProfile);
            }
        });
    }&lt;/PRE&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 29 Jul 2018 13:35:35 GMT</pubDate>
    <dc:creator>blackwood821</dc:creator>
    <dc:date>2018-07-29T13:35:35Z</dc:date>
    <item>
      <title>Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/62256#M36615</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;Accept.js&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in a single page React application. I have my own&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;AddPaymentProfileForm&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;component so I'm building the form myself and sending the CC info&amp;nbsp;to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;Accept.js&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for a token in return. I'm receiving the following error:&lt;/P&gt;&lt;PRE&gt;E_WC_14: Accept.js encryption failed.&lt;/PRE&gt;&lt;P&gt;I have analyzed the network requests and both the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;OPTIONS&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;request and the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;POST&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;request are receving successful 200 responses. The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;POST&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;response contains:&lt;/P&gt;&lt;PRE&gt;code:"I00001"
text:"Successful."&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="name"&gt;I searched the forums for the "&lt;FONT face="courier new,courier,monospace"&gt;Accept.js encryption failed&lt;/FONT&gt;" message and read some of the suggestions. One of them was to find out if my&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;responseHandler&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;function is getting called twice and IT IS. I can't figure out why it's being called twice.&amp;nbsp;Here is my setup...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="name"&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;onSubmit&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;event on the form (specified in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;render&lt;/FONT&gt;&amp;nbsp;function of the component) is calling a function in the component called&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;sendPaymentDataToAnet&lt;/FONT&gt;.&lt;/P&gt;&lt;PRE&gt;&amp;lt;AddPaymentProfileForm
     id="paymentForm"
     onSubmit={this.sendPaymentDataToAnet}
/&amp;gt;&lt;/PRE&gt;&lt;PRE&gt;sendPaymentDataToAnet = (event, paymentProfile) =&amp;gt; {
    event.preventDefault();

    // ...&lt;BR /&gt;&lt;BR /&gt;    let self = this;&lt;BR /&gt;    Accept.dispatchData(secureData, responseHandler);&lt;BR /&gt;
    function responseHandler(response) {
        console.log("responseHandler function called");
        if (response.messages.resultCode === "Error") {
            // stopLoading();
            var i = 0;
            while (i &amp;lt; response.messages.message.length) {
                console.log(
                    response.messages.message[i].code + ": " +
                    response.messages.message[i].text
                );
                // only show the user the first error message
                if (i == 0) {
                    var error = response.messages.message[i].text;
                    self.alert("Error", error);
                }	
                i = i + 1;
            }
        } else {
            paymentFormUpdate(response.opaqueData, paymentProfile);
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&lt;FONT face="courier new,courier,monospace"&gt;Accept.js&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is being loaded at the top of the web page before the component is defined in a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;&amp;lt;script&amp;gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;tag.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is much appreciated. Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 17:38:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/62256#M36615</guid>
      <dc:creator>blackwood821</dc:creator>
      <dc:date>2018-03-22T17:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/63911#M37925</link>
      <description>&lt;P&gt;I am seeing the same issue. Do you have any updates on this?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 20:26:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/63911#M37925</guid>
      <dc:creator>svora</dc:creator>
      <dc:date>2018-07-26T20:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/63933#M37946</link>
      <description>&lt;P&gt;I just tested again and I don't have the issue anymore. My code has changed since so I will post my working code below. However, I reverted to the old version of the&amp;nbsp;sendPaymentDataToAnet() function (in my original post) and I DO get the "encryption failed" error but my responseHandler() function DOES NOT get called twice so I'm not sure what else I changed outside of this code to resolve the duplicate call. However, either way, the code below should work for you since it's working for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sendPaymentDataToAnet = (event, paymentProfile) =&amp;gt; {
        console.log("sendPaymentDataToAnet()");
        event.preventDefault();
        this.setState({ processing: true });

        var authData = {};
            authData.clientKey = this.state.clientKey;
            authData.apiLoginID = this.state.apiLoginID;

        var cardData = {};
            cardData.cardNumber = paymentProfile.cardNumber;
            cardData.month = paymentProfile.expMonth;
            cardData.year = paymentProfile.expYear;
            cardData.cardCode = paymentProfile.cardCode;

        var secureData = {};
            secureData.authData = authData;
            secureData.cardData = cardData;

        let lastResponse = null;

        Accept.dispatchData(secureData, response =&amp;gt; {
            // just in case it still gets called twice, ignore the second call
            if (response == lastResponse) {
                console.log("skipping duplicated responseHandler() call because it's the same response as the previous response");
                return;
            }
            lastResponse = response;

            console.log("responseHandler function called");
            if (response.messages.resultCode === "Error") {
                // stopLoading();
                var i = 0;
                while (i &amp;lt; response.messages.message.length) {
                    console.log(
                        response.messages.message[i].code + ": " +
                        response.messages.message[i].text
                    );
                    // only show the user the first error message
                    if (i == 0) {
                        var error = response.messages.message[i].text;
                        console.error("Error", error);
                    }	
                    i = i + 1;
                }
            } else {
                this.paymentFormUpdate(response.opaqueData, paymentProfile);
            }
        });
    }&lt;/PRE&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 13:35:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/63933#M37946</guid>
      <dc:creator>blackwood821</dc:creator>
      <dc:date>2018-07-29T13:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/63934#M37947</link>
      <description>&lt;P&gt;I just tested again and I don't have the issue anymore. My code has changed since so I will post my working code below. However, I reverted to the old version of the&amp;nbsp;sendPaymentDataToAnet() function (in my original post) and I DO get the "encryption failed" error but my responseHandler() function DOES NOT get called twice so I'm not sure what else I changed outside of this code to resolve the duplicate call. However, either way, the code below should work for you since it's working for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sendPaymentDataToAnet = (event, paymentProfile) =&amp;gt; {
        console.log("sendPaymentDataToAnet()");
        event.preventDefault();
        this.setState({ processing: true });

        var authData = {};
            authData.clientKey = this.state.clientKey;
            authData.apiLoginID = this.state.apiLoginID;

        var cardData = {};
            cardData.cardNumber = paymentProfile.cardNumber;
            cardData.month = paymentProfile.expMonth;
            cardData.year = paymentProfile.expYear;
            cardData.cardCode = paymentProfile.cardCode;

        var secureData = {};
            secureData.authData = authData;
            secureData.cardData = cardData;

        let lastResponse = null;

        Accept.dispatchData(secureData, response =&amp;gt; {
            // just in case it still gets called twice, ignore the second call
            if (response == lastResponse) {
                console.log("skipping duplicated responseHandler() call because it's the same response as the previous response");
                return;
            }
            lastResponse = response;

            console.log("responseHandler function called");
            if (response.messages.resultCode === "Error") {
                // stopLoading();
                var i = 0;
                while (i &amp;lt; response.messages.message.length) {
                    console.log(
                        response.messages.message[i].code + ": " +
                        response.messages.message[i].text
                    );
                    // only show the user the first error message
                    if (i == 0) {
                        var error = response.messages.message[i].text;
                        console.error("Error", error);
                    }	
                    i = i + 1;
                }
            } else {
                this.paymentFormUpdate(response.opaqueData, paymentProfile);
            }
        });
    }&lt;/PRE&gt;&lt;P&gt;The main difference in this version of the code is that it uses an arrow function instead of defining a new function inside of sendPaymentDataToAnet() function. I'm not sure exactly why this works over the other way but it is a bit strange to define a function inside of a React event handler so it must just be the way React handles that scenario.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 13:40:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/63934#M37947</guid>
      <dc:creator>blackwood821</dc:creator>
      <dc:date>2018-07-29T13:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/64806#M38616</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/23043"&gt;@blackwood821&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;Accept.js&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in a single page React application. I have my own&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;AddPaymentProfileForm&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;component so I'm building the form myself and sending the CC info&amp;nbsp;to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;Accept.js&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for a token in return. I'm receiving the following error:&lt;/P&gt;&lt;PRE&gt;E_WC_14: Accept.js encryption failed.&lt;/PRE&gt;&lt;P&gt;I have analyzed the network requests and both the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;OPTIONS&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;request and the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;POST&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;request are receving successful 200 responses. The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;POST&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;response contains:&lt;/P&gt;&lt;PRE&gt;code:"I00001"
text:"Successful."&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="name"&gt;I searched the forums for the "&lt;FONT face="courier new,courier,monospace"&gt;Accept.js encryption failed&lt;/FONT&gt;" message and read some of the suggestions. One of them was to find out if my&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;responseHandler&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;function is getting called twice and IT IS. I can't figure out why it's being called twice. &lt;A href="https://ifacetimeapp.com/facetime-for-pc-download-app-windows-10-8-17-mac/" target="_self"&gt;&lt;FONT color="#000000"&gt;Facetime PC&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;Here is my setup...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="name"&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;onSubmit&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;event on the form (specified in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;render&lt;/FONT&gt;&amp;nbsp;function of the component) is calling a function in the component called&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;sendPaymentDataToAnet&lt;/FONT&gt;.&lt;/P&gt;&lt;PRE&gt;&amp;lt;AddPaymentProfileForm
     id="paymentForm"
     onSubmit={this.sendPaymentDataToAnet}
/&amp;gt;&lt;/PRE&gt;&lt;PRE&gt;sendPaymentDataToAnet = (event, paymentProfile) =&amp;gt; {
    event.preventDefault();

    // ...&lt;BR /&gt;&lt;BR /&gt;    let self = this;&lt;BR /&gt;    Accept.dispatchData(secureData, responseHandler);&lt;BR /&gt;
    function responseHandler(response) {
        console.log("responseHandler function called");
        if (response.messages.resultCode === "Error") {
            // stopLoading();
            var i = 0;
            while (i &amp;lt; response.messages.message.length) {
                console.log(
                    response.messages.message[i].code + ": " +
                    response.messages.message[i].text
                );
                // only show the user the first error message
                if (i == 0) {
                    var error = response.messages.message[i].text;
                    self.alert("Error", error);
                }	
                i = i + 1;
            }
        } else {
            paymentFormUpdate(response.opaqueData, paymentProfile);
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&lt;FONT face="courier new,courier,monospace"&gt;Accept.js&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is being loaded at the top of the web page before the component is defined in a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier,monospace"&gt;&amp;lt;script&amp;gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;tag.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is much appreciated. Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;I have the same issue. Did you happen to resolve this?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 10:33:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/64806#M38616</guid>
      <dc:creator>Gregory845</dc:creator>
      <dc:date>2018-10-17T10:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/64922#M38695</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26656"&gt;@Gregory845&lt;/a&gt;&amp;nbsp;See my previous reply above. It has been a while since I encountered the original issue. When I went back to check my current working solution the main difference I saw was that I was using an arrow function.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:14:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/64922#M38695</guid>
      <dc:creator>blackwood821</dc:creator>
      <dc:date>2018-10-31T14:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/65267#M38957</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the &amp;nbsp;code snippet provided in the post by&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/23043"&gt;@blackwood821&lt;/a&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;in sendpaymentdatatonet method there are not setting the authdata and card data values . Can you please check if you are setting the values first and then try to send to the Accept.dispatchData().&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please follow the below link has the information on how to send data to&amp;nbsp;Accept.dispatchData() method.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.authorize.net/api/reference/features/acceptjs.html%20" target="_self"&gt;https://developer.authorize.net/api/reference/features/acceptjs.html&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH, Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 05 Dec 2018 12:15:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/65267#M38957</guid>
      <dc:creator>chsriniv9</dc:creator>
      <dc:date>2018-12-05T12:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/65629#M39260</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22839"&gt;@chsriniv9&lt;/a&gt;&amp;nbsp;In the original post I didn't include all of the code in the snippet but I indicated there is more code via the comment:&lt;/P&gt;&lt;PRE&gt;// ...&lt;/PRE&gt;&lt;P&gt;So I was always passing the correct data. If you look at the code snippet further down in this thread you will see the data being set.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 14:46:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/65629#M39260</guid>
      <dc:creator>blackwood821</dc:creator>
      <dc:date>2019-01-07T14:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js encryption failed</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/67696#M41053</link>
      <description>&lt;P&gt;how can i access &lt;A href="https://mcdvoicecomsurveys.wordpress.com/" target="_self"&gt;www.mcdvoice.com&lt;/A&gt;? They are showing me some errors while i am accessing it.&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2019 05:47:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-encryption-failed/m-p/67696#M41053</guid>
      <dc:creator>menudwai</dc:creator>
      <dc:date>2019-05-15T05:47:51Z</dc:date>
    </item>
  </channel>
</rss>

