<?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: Description field data not showing up in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13872#M8234</link>
    <description>&lt;P&gt;It looks like this may be an oversight in the current version of the SDK.&amp;nbsp; The AuthorizationRequest construct does allow you to submit a description, but it is actually overwritten by the gateway.send method.&amp;nbsp; In order to send a description successfully with your example code, you can modify it to include the description in the send request.&amp;nbsp; As a workaround, you can send your description by including it in the send method.&amp;nbsp; Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;AuthorizeNet.Gateway gate = new AuthorizeNet.Gateway("***", "***", false);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;AuthorizeNet.AuthorizationRequest req = new AuthorizeNet.AuthorizationRequest("***", "******", 0.01m, &lt;FONT color="#FF0000"&gt;null&lt;/FONT&gt;, true);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;// req.Description properly contains value&lt;BR /&gt;AuthorizeNet.GatewayResponse resp = (AuthorizeNet.GatewayResponse)gate.Send(req&lt;FONT color="#FF0000"&gt;, "TEST DESCRIPTION"&lt;/FONT&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;// resp.Description properly contains value&lt;/FONT&gt;&lt;/FONT&gt;﻿&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jun 2011 21:55:22 GMT</pubDate>
    <dc:creator>Trevor</dc:creator>
    <dc:date>2011-06-21T21:55:22Z</dc:date>
    <item>
      <title>Description field data not showing up</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13798#M8200</link>
      <description>&lt;P&gt;Using AIM, I've tried the test code, I've tried my own stripped down code. Here is one my trials using the SDK:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;AuthorizeNet.Gateway gate = new AuthorizeNet.Gateway("***", "***", false);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;AuthorizeNet.AuthorizationRequest req = new AuthorizeNet.AuthorizationRequest("***", "******", 0.01m, "TEST", true);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;// req.Description properly contains value&lt;BR /&gt;AuthorizeNet.GatewayResponse resp = (AuthorizeNet.GatewayResponse)gate.Send(req);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;// resp.Description properly contains value&lt;/FONT&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"&gt;The description data (i.e. "TEST")&amp;nbsp;is not showing up&amp;nbsp;in the gateway response nor in the &amp;nbsp;transaction reports.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;What am I missing?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Thanks for the help.﻿&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2011 16:25:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13798#M8200</guid>
      <dc:creator>ooshwa</dc:creator>
      <dc:date>2011-06-17T16:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Description field data not showing up</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13800#M8201</link>
      <description>&lt;P&gt;Sorry, my last comment in the code should had said:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;// resp.Description DOES NOT contain value&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2011 16:47:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13800#M8201</guid>
      <dc:creator>ooshwa</dc:creator>
      <dc:date>2011-06-17T16:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Description field data not showing up</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13872#M8234</link>
      <description>&lt;P&gt;It looks like this may be an oversight in the current version of the SDK.&amp;nbsp; The AuthorizationRequest construct does allow you to submit a description, but it is actually overwritten by the gateway.send method.&amp;nbsp; In order to send a description successfully with your example code, you can modify it to include the description in the send request.&amp;nbsp; As a workaround, you can send your description by including it in the send method.&amp;nbsp; Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;AuthorizeNet.Gateway gate = new AuthorizeNet.Gateway("***", "***", false);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;AuthorizeNet.AuthorizationRequest req = new AuthorizeNet.AuthorizationRequest("***", "******", 0.01m, &lt;FONT color="#FF0000"&gt;null&lt;/FONT&gt;, true);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;// req.Description properly contains value&lt;BR /&gt;AuthorizeNet.GatewayResponse resp = (AuthorizeNet.GatewayResponse)gate.Send(req&lt;FONT color="#FF0000"&gt;, "TEST DESCRIPTION"&lt;/FONT&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;// resp.Description properly contains value&lt;/FONT&gt;&lt;/FONT&gt;﻿&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2011 21:55:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13872#M8234</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2011-06-21T21:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Description field data not showing up</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13902#M8248</link>
      <description>&lt;P&gt;Hey ooshwa,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We recently released an updated version of the C# SDK. Can you &lt;A href="http://developer.authorize.net/downloads/" target="_blank"&gt;download &lt;/A&gt;the latest version and then let us know if you're still seeing this behavior?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Michelle&lt;/P&gt;
&lt;P&gt;Developer Community Manager&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2011 20:04:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13902#M8248</guid>
      <dc:creator>Michelle</dc:creator>
      <dc:date>2011-06-22T20:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Description field data not showing up</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13988#M8291</link>
      <description>&lt;P&gt;Hi Michelle,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No sdk ver. 1.5 does not solve this issue.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2011 19:14:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/13988#M8291</guid>
      <dc:creator>athosghost</dc:creator>
      <dc:date>2011-06-27T19:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Description field data not showing up</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/14064#M8321</link>
      <description>&lt;P&gt;Michelle, the update fixed the problem for me. Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a suggestion, you might consider returning the ResponseReasonCode in the request.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2011 15:33:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/14064#M8321</guid>
      <dc:creator>ooshwa</dc:creator>
      <dc:date>2011-06-29T15:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Description field data not showing up</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/14268#M8412</link>
      <description>&lt;P&gt;Hey ooshwa,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the suggestion. I've passed it on to our development folk for their consideration.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Michelle&lt;/P&gt;
&lt;P&gt;Developer Community Manager&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2011 21:58:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Description-field-data-not-showing-up/m-p/14268#M8412</guid>
      <dc:creator>Michelle</dc:creator>
      <dc:date>2011-07-07T21:58:07Z</dc:date>
    </item>
  </channel>
</rss>

