<?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 Somebody took the trouble...no response? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Somebody-took-the-trouble-no-response/m-p/14290#M8419</link>
    <description>&lt;P&gt;What's up here. Somebody takes the trouble to identify, isolate, and document a bug...&lt;/P&gt;&lt;P&gt;...and no response?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using anet_dotnet_sdk-1.5.0? in C# VS 2008 Pro,&lt;/P&gt;&lt;P&gt;all sources loaded into solutionusing the Transaction Details API&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modified the QuickStart SampleReporting application as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;var gate = new ReportingGateway("myid", "mykey", ServiceMode.Live);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;DateTime to = DateTime.Today; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;DateTime from = DateTime.Today.AddDays(-7); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;var transactions = gate.GetTransactionList(from, to);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;foreach (var trans in transactions) { &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 color="#0000FF"&gt;var detail = gate.GetTransactionDetails(trans.TransactionID);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;etc﻿&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you will find is that no descriptions or line items are returned.&lt;/P&gt;&lt;P&gt;Drilling down into the code, it's not easy to get at the raw XML response,&lt;/P&gt;&lt;P&gt;which is how your APOI docs are presented.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the other hand, the following Python code does return the raw XML&lt;/P&gt;&lt;P&gt;which contains descriptions and line items.&lt;/P&gt;&lt;P&gt;I compared transaction details, trans_id by trans_id in both systems.&lt;/P&gt;&lt;P&gt;(sorry about the indentation, the original indentation apparently can't be replicated here)﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; for transaction_id in transaction_id_list:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;request_xml = \&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;"""&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;getTransactionDetailsRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;lt;merchantAuthentication&amp;gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;""" + myAPILogin + """&amp;lt;/name&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;transactionKey&amp;gt;""" + myTransactionKey + """&amp;lt;/transactionKey&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/merchantAuthentication&amp;gt;&amp;nbsp; &amp;nbsp; &amp;lt;transId&amp;gt;""" + str(transaction_id) + """&amp;lt;/transId&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;/getTransactionDetailsRequest&amp;gt;"""&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;request = urllib2.Request(&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Authorize_Request_URL, request_xml,&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {'Content-Type': 'text/xml'}&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;response = urllib2.urlopen(request)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; except urllib2.URLError, err:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;print(err.reason)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;response_etree_root = objectify.parse(response).getroot()&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (not (response_etree_root.messages.resultCode == 'Ok')):&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;errmsg = "\n".join(list(response_etree_root.messages.message.itertext()))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # raise an error w/ errmsg&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; print ETree.tostring(response_etree_root, pretty_print=True)﻿&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I saw where a poster asked what's the sense in having an SDK that doesn't work,&lt;/P&gt;&lt;P&gt;and the response was probably correct...essentially pilot error.&lt;/P&gt;&lt;P&gt;But I think it would be fair to pose the same question with regard to the bug documented&lt;/P&gt;&lt;P&gt;above. What's the sense in publishing an SDK with such a serious bug?﻿﻿&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jul 2011 14:18:03 GMT</pubDate>
    <dc:creator>krc</dc:creator>
    <dc:date>2011-07-08T14:18:03Z</dc:date>
    <item>
      <title>Somebody took the trouble...no response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Somebody-took-the-trouble-no-response/m-p/14290#M8419</link>
      <description>&lt;P&gt;What's up here. Somebody takes the trouble to identify, isolate, and document a bug...&lt;/P&gt;&lt;P&gt;...and no response?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using anet_dotnet_sdk-1.5.0? in C# VS 2008 Pro,&lt;/P&gt;&lt;P&gt;all sources loaded into solutionusing the Transaction Details API&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modified the QuickStart SampleReporting application as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;var gate = new ReportingGateway("myid", "mykey", ServiceMode.Live);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;DateTime to = DateTime.Today; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;DateTime from = DateTime.Today.AddDays(-7); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;var transactions = gate.GetTransactionList(from, to);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;foreach (var trans in transactions) { &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 color="#0000FF"&gt;var detail = gate.GetTransactionDetails(trans.TransactionID);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;etc﻿&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you will find is that no descriptions or line items are returned.&lt;/P&gt;&lt;P&gt;Drilling down into the code, it's not easy to get at the raw XML response,&lt;/P&gt;&lt;P&gt;which is how your APOI docs are presented.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the other hand, the following Python code does return the raw XML&lt;/P&gt;&lt;P&gt;which contains descriptions and line items.&lt;/P&gt;&lt;P&gt;I compared transaction details, trans_id by trans_id in both systems.&lt;/P&gt;&lt;P&gt;(sorry about the indentation, the original indentation apparently can't be replicated here)﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; for transaction_id in transaction_id_list:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;request_xml = \&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;"""&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;getTransactionDetailsRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;lt;merchantAuthentication&amp;gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;""" + myAPILogin + """&amp;lt;/name&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;transactionKey&amp;gt;""" + myTransactionKey + """&amp;lt;/transactionKey&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/merchantAuthentication&amp;gt;&amp;nbsp; &amp;nbsp; &amp;lt;transId&amp;gt;""" + str(transaction_id) + """&amp;lt;/transId&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;/getTransactionDetailsRequest&amp;gt;"""&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;request = urllib2.Request(&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Authorize_Request_URL, request_xml,&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {'Content-Type': 'text/xml'}&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;response = urllib2.urlopen(request)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; except urllib2.URLError, err:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;print(err.reason)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;response_etree_root = objectify.parse(response).getroot()&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (not (response_etree_root.messages.resultCode == 'Ok')):&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;errmsg = "\n".join(list(response_etree_root.messages.message.itertext()))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # raise an error w/ errmsg&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; print ETree.tostring(response_etree_root, pretty_print=True)﻿&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I saw where a poster asked what's the sense in having an SDK that doesn't work,&lt;/P&gt;&lt;P&gt;and the response was probably correct...essentially pilot error.&lt;/P&gt;&lt;P&gt;But I think it would be fair to pose the same question with regard to the bug documented&lt;/P&gt;&lt;P&gt;above. What's the sense in publishing an SDK with such a serious bug?﻿﻿&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2011 14:18:03 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Somebody-took-the-trouble-no-response/m-p/14290#M8419</guid>
      <dc:creator>krc</dc:creator>
      <dc:date>2011-07-08T14:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Somebody took the trouble...no response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Somebody-took-the-trouble-no-response/m-p/14414#M8475</link>
      <description>&lt;P&gt;Hey krc,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like this is the same post as the one &lt;A href="http://community.developer.authorize.net/t5/Integration-and-Testing/Serious-confirmed-bug-in-dotnet-sdk-code-replicates-bug/td-p/14240" target="_self"&gt;here&lt;/A&gt;, which has already been reported to our development teams.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again!&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>Tue, 12 Jul 2011 16:10:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Somebody-took-the-trouble-no-response/m-p/14414#M8475</guid>
      <dc:creator>Michelle</dc:creator>
      <dc:date>2011-07-12T16:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Somebody took the trouble...no response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Somebody-took-the-trouble-no-response/m-p/14420#M8476</link>
      <description>&lt;P&gt;Perhaps the same can be done w/ report of Transaction Details API trashing Unicode chars.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;K&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2011 21:05:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Somebody-took-the-trouble-no-response/m-p/14420#M8476</guid>
      <dc:creator>krc</dc:creator>
      <dc:date>2011-07-12T21:05:46Z</dc:date>
    </item>
  </channel>
</rss>

