<?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: Get Response Info from Sitecore E-commerce Site using Authorize.Net in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Get-Response-Info-from-Sitecore-E-commerce-Site-using-Authorize/m-p/24913#M13319</link>
    <description>&lt;P&gt;Hi TheUndecider,&lt;BR /&gt;&lt;BR /&gt;I don't know the specifics of Sitecore's Authorize.Net integration, but if you are receiving the message "This transaction has been declined", it is likely that there is no additional information available.&amp;nbsp; Authorize.Net does return additional details when possible, but most transaction declines come from the customer's bank and do not provide additional details as to the cause of the decline.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Joy&lt;/P&gt;</description>
    <pubDate>Fri, 23 Mar 2012 21:21:39 GMT</pubDate>
    <dc:creator>Joy</dc:creator>
    <dc:date>2012-03-23T21:21:39Z</dc:date>
    <item>
      <title>Get Response Info from Sitecore E-commerce Site using Authorize.Net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Get-Response-Info-from-Sitecore-E-commerce-Site-using-Authorize/m-p/24853#M13292</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Hello,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;I am trying to figure out how to get the response from a credit card transaction and notify the user if the transaction was declined and provide the reason why it happened.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;I am starting to use sitecore and authorize.net.&amp;nbsp;&amp;nbsp; I have seen code here on how to get the response string, but it doesn't seem to work in our website because we're using the SEEE API to submit the order.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code we have:&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;CustomerOrderProcessor customerOrderProcessor = new CustomerOrderProcessor(); customerOrderProcessor.SubmitOrder(order); &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;order.Status = CustomerOrder.CompleteStatus; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;success = true;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;We get an alert from the catch statement if the transaction fails, but we want it to be more detailed than "This transaction has been declined."&amp;nbsp; Basically, we want to show whether they entered the wrong cvv, billing zip code, wrong CC number, etc.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;catch (CreditCardTransactionException ex)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;{&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.Page.ClientScript.RegisterStartupScript(this.GetType(), "CreditCardTransactionError", String.Format("alert('{0}');", ex.Message), true);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;catch (Exception ex)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.Page.ClientScript.RegisterStartupScript(this.GetType(), "SubmitOrderError", String.Format("alert('{0}');", ex.Message), true);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Does anyone here knows how to get the reponse string in Sitecore E-Commerce Enterprise Edition so we could use it?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Thanks!﻿&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 18:50:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Get-Response-Info-from-Sitecore-E-commerce-Site-using-Authorize/m-p/24853#M13292</guid>
      <dc:creator>TheUndecider</dc:creator>
      <dc:date>2012-03-22T18:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Get Response Info from Sitecore E-commerce Site using Authorize.Net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Get-Response-Info-from-Sitecore-E-commerce-Site-using-Authorize/m-p/24913#M13319</link>
      <description>&lt;P&gt;Hi TheUndecider,&lt;BR /&gt;&lt;BR /&gt;I don't know the specifics of Sitecore's Authorize.Net integration, but if you are receiving the message "This transaction has been declined", it is likely that there is no additional information available.&amp;nbsp; Authorize.Net does return additional details when possible, but most transaction declines come from the customer's bank and do not provide additional details as to the cause of the decline.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Joy&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2012 21:21:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Get-Response-Info-from-Sitecore-E-commerce-Site-using-Authorize/m-p/24913#M13319</guid>
      <dc:creator>Joy</dc:creator>
      <dc:date>2012-03-23T21:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Get Response Info from Sitecore E-commerce Site using Authorize.Net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Get-Response-Info-from-Sitecore-E-commerce-Site-using-Authorize/m-p/24917#M13321</link>
      <description>&lt;P&gt;Thanks Joy for your answer.&amp;nbsp; It's not what I was hoping to hear, but I kind of knew that message could be the only info we could get for declined transactions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a nice weekend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;T.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2012 21:55:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Get-Response-Info-from-Sitecore-E-commerce-Site-using-Authorize/m-p/24917#M13321</guid>
      <dc:creator>TheUndecider</dc:creator>
      <dc:date>2012-03-23T21:55:48Z</dc:date>
    </item>
  </channel>
</rss>

