<?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 c# problem in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-c-problem/m-p/63517#M37614</link>
    <description>&lt;P&gt;Hi Anurag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The items that are in the system listed as fraud filtered are the items that successfully send from the Authnet code samples page that has the "Try It" code. When I try it, using my credentials, the accept.js charge goes through to my account, albeit as a fraud charge, but that is fine because the charge is going through.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using that same C# code on my page, I am getting the token back, but the charge is not being created. I have surrounded the c# charge code in a try/catch, and there is not an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I am not sure why the charge is not created. I am running from https://localhost when testing. Sometimes I will get a "cannot establish a secure connection" that referes to the controller.Execute(); line of this section of the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// instantiate the controller that will call the service&lt;BR /&gt;var controller = new createTransactionController(request);&lt;BR /&gt;controller.Execute();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas? Thank you for the help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lynn&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jun 2018 17:41:09 GMT</pubDate>
    <dc:creator>lbantley</dc:creator>
    <dc:date>2018-06-28T17:41:09Z</dc:date>
    <item>
      <title>Accept.js c# problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-c-problem/m-p/63507#M37605</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to implement Accept.ui into my site. I have the page set up and returning a token. My issue is that the code to create the transaction is not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the C# code from the example here:&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/#payment-transactions-create-an-accept-payment-transaction" target="_blank"&gt;https://developer.authorize.net/api/reference/#payment-transactions-create-an-accept-payment-transaction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am passing the ApiLoginID, ApiTransactionKey, the amount, and also passing the generated token to CreateAnAcceptPaymentTransaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what is being returned in the header. I am not seeing anything about the charge transaction, so not sure what I amight be missing.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;headers: cardNumber= expMonth= expYear= cardCode= dataValue=eyJjb2RlIjoiNTBfMl8wNjAwMDUzRjhCRUI5RUU5ODExNzc5OTgxOEI2RTdGRDFBNTYyNTRERTE3Q0RBQTQ2RTQ3MUFERDMxQjA4MzQ1QzQ4MUM2RUJCRjE5QjcyQjc0NkVBREZCMjkwNEQ4RkY2NDNFMDVGIiwidG9rZW4iOiI5NTMwMTQ4NzkwMjA3MDM4ODA0NjA0IiwidiI6IjEuMSJ9 dataDescriptor=COMMON.ACCEPT.INAPP.PAYMENT 1&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I use the "Try It" from the above URL, I get the following response:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;BR /&gt;"transactionResponse": {&lt;BR /&gt;"responseCode": "4",&lt;BR /&gt;"authCode": "8C1Z7I",&lt;BR /&gt;"avsResultCode": "Y",&lt;BR /&gt;"cvvResultCode": "P",&lt;BR /&gt;"cavvResultCode": "2",&lt;BR /&gt;"transId": "60105181628",&lt;BR /&gt;"refTransID": "",&lt;BR /&gt;"transHash": "7F74F314BE0B2E9E3C650FBF9249C1B4",&lt;BR /&gt;"testRequest": "0",&lt;BR /&gt;"accountNumber": "XXXX4444",&lt;BR /&gt;"accountType": "MasterCard",&lt;BR /&gt;"messages": [&lt;BR /&gt;{&lt;BR /&gt;"code": "253",&lt;BR /&gt;"description": "Your order has been received. Thank you for your business!"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"userFields": [&lt;BR /&gt;{&lt;BR /&gt;"name": "MerchantDefinedFieldName1",&lt;BR /&gt;"value": "MerchantDefinedFieldValue1"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"name": "favorite_color",&lt;BR /&gt;"value": "blue"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"transHashSha2": ""&lt;BR /&gt;},&lt;BR /&gt;"refId": "123456",&lt;BR /&gt;"messages": {&lt;BR /&gt;"resultCode": "Ok",&lt;BR /&gt;"message": [&lt;BR /&gt;{&lt;BR /&gt;"code": "I00001",&lt;BR /&gt;"text": "Successful."&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Not sure where to start looking. I would appreciate any guidance you may have.&amp;nbsp;&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>Thu, 28 Jun 2018 01:30:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-c-problem/m-p/63507#M37605</guid>
      <dc:creator>lbantley</dc:creator>
      <dc:date>2018-06-28T01:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js c# problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-c-problem/m-p/63508#M37606</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20549"&gt;@lbantley&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks like this payment transaction is held for review by our Fraud Filters .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you login to your Merchant Interface and check if you have fraud filters ON ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.authorize.net/s/article/What-Is-the-Advanced-Fraud-Detection-Suite-AFDS&amp;nbsp;" target="_blank"&gt;https://support.authorize.net/s/article/What-Is-the-Advanced-Fraud-Detection-Suite-AFDS&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.authorize.net/s/article/What-Are-the-Different-Advance-Fraud-Detection-Suite-AFDS-Transaction-Filters-and-Actions&amp;nbsp;" target="_blank"&gt;https://support.authorize.net/s/article/What-Are-the-Different-Advance-Fraud-Detection-Suite-AFDS-Transaction-Filters-and-Actions&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developer.authorize.net/api/reference/features/payment_transactions.html#Basic_Fraud_Settings" target="_blank"&gt;https://developer.authorize.net/api/reference/features/payment_transactions.html#Basic_Fraud_Settings&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps !!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2018 05:21:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-c-problem/m-p/63508#M37606</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-06-28T05:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Accept.js c# problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-c-problem/m-p/63517#M37614</link>
      <description>&lt;P&gt;Hi Anurag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The items that are in the system listed as fraud filtered are the items that successfully send from the Authnet code samples page that has the "Try It" code. When I try it, using my credentials, the accept.js charge goes through to my account, albeit as a fraud charge, but that is fine because the charge is going through.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using that same C# code on my page, I am getting the token back, but the charge is not being created. I have surrounded the c# charge code in a try/catch, and there is not an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I am not sure why the charge is not created. I am running from https://localhost when testing. Sometimes I will get a "cannot establish a secure connection" that referes to the controller.Execute(); line of this section of the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// instantiate the controller that will call the service&lt;BR /&gt;var controller = new createTransactionController(request);&lt;BR /&gt;controller.Execute();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas? Thank you for the help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lynn&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2018 17:41:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-js-c-problem/m-p/63517#M37614</guid>
      <dc:creator>lbantley</dc:creator>
      <dc:date>2018-06-28T17:41:09Z</dc:date>
    </item>
  </channel>
</rss>

