<?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: Prior AuthCapture in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45168#M22874</link>
    <description>&lt;P&gt;I see that you have&lt;/P&gt;&lt;P&gt;HttpXmlUtility(ServiceMode.Live, apiLogin, merchantKey);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this a test account or live/production account?&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jul 2014 14:57:56 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2014-07-10T14:57:56Z</dc:date>
    <item>
      <title>Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45166#M22873</link>
      <description>&lt;P&gt;.NET C# I need to do an Auth, then capture that Auth with the CIM. I create the PriorAuthCaptureType and then try to get a CustomerProfileTransResponse but it blows up giving me a null exception when I submit it the PriorAuthCaptureType. I do have a problem with the other ProfileTransTypes. Everthing compiles and builds OK. Any suggestions ? I pasted the method I have below.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;public createCustomerProfileTransactionResponse CaptureCustomerProfile(string customerProfileId, string customerPaymentProfileId, string transId, decimal Amount, string apiLogin, string merchantKey) { HttpXmlUtility httpXmlUtility = new HttpXmlUtility(ServiceMode.Live, apiLogin, merchantKey); profileTransPriorAuthCaptureType _transCaptureOnly = new profileTransPriorAuthCaptureType(); _transCaptureOnly.transId = transId; _transCaptureOnly.amount = Amount; _transCaptureOnly.customerPaymentProfileId = customerPaymentProfileId; _transCaptureOnly.customerProfileId = customerProfileId; profileTransactionType _transactionType = new profileTransactionType(); _transactionType.Item = _transCaptureOnly; createCustomerProfileTransactionRequest _request = new createCustomerProfileTransactionRequest();
_request.transaction = _transactionType;
createCustomerProfileTransactionResponse _response = (createCustomerProfileTransactionResponse)httpXmlUtility.Send(_request); return _response; }&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Thx&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 13:49:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45166#M22873</guid>
      <dc:creator>glerler</dc:creator>
      <dc:date>2014-07-10T13:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45168#M22874</link>
      <description>&lt;P&gt;I see that you have&lt;/P&gt;&lt;P&gt;HttpXmlUtility(ServiceMode.Live, apiLogin, merchantKey);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this a test account or live/production account?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 14:57:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45168#M22874</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-10T14:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45170#M22875</link>
      <description>&lt;P&gt;This is using a live account.&lt;/P&gt;&lt;P&gt;I have not had issues with the other profileTransactionTypes.&lt;/P&gt;&lt;P&gt;Thx for reading&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 15:03:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45170#M22875</guid>
      <dc:creator>glerler</dc:creator>
      <dc:date>2014-07-10T15:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45172#M22876</link>
      <description>&lt;P&gt;Code look ok.&lt;/P&gt;&lt;P&gt;It getting null because it try to parse the respone, you can see the code in&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/Utility/HttpXmlUtility.cs"&gt;https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/Utility/HttpXmlUtility.cs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It probably getting one of the E????? error, read the CIM xml&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/api/cim/"&gt;http://developer.authorize.net/api/cim/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If other transactiontype works, my guess would be the transactionID, can you login to the merchant account and see if the transactionID is valid?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 15:22:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45172#M22876</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-10T15:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45188#M22884</link>
      <description>&lt;P&gt;I am getting a .NET null error.&amp;nbsp; The Exxx error I am well familiar with,&amp;nbsp; but I dont get as far the response.&amp;nbsp; .NET throws the no istance of the object and things kak.&amp;nbsp;&amp;nbsp; I am using similar code for other TransTypes and I get a response to parse. If I use the captue only it works fine&amp;nbsp; but that creates another transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have merchant access and&amp;nbsp; the&amp;nbsp; profile, transID data is all good.&amp;nbsp; I wish I was getting the Exxx error cause then I know the where to look.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This has me stumped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 19:11:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45188#M22884</guid>
      <dc:creator>glerler</dc:creator>
      <dc:date>2014-07-10T19:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45194#M22887</link>
      <description>&lt;P&gt;If you run debug, the error was on &lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/Utility/HttpXmlUtility.cs"&gt;https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/Utility/HttpXmlUtility.cs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The response is null&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;public ANetApiResponse Send(ANetApiRequest apiRequest) {&lt;BR /&gt;...&lt;BR /&gt;CheckForErrors&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;response&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Download the source and change it to get the Exxxxx error.&lt;/P&gt;&lt;P&gt;Or just skip the SDKs and use the web service interface.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 19:25:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45194#M22887</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-10T19:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45218#M22899</link>
      <description>&lt;P&gt;Please correct me if I am wrong but I did not see a priorAuthCapture in the CustomerGateway Interface.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 23:10:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45218#M22899</guid>
      <dc:creator>glerler</dc:creator>
      <dc:date>2014-07-10T23:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45220#M22900</link>
      <description>&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/CIM/CustomerGateway.cs"&gt;https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/CIM/CustomerGateway.cs&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;public&lt;/SPAN&gt; &lt;SPAN&gt;IGatewayResponse&lt;/SPAN&gt; &lt;SPAN&gt;PriorAuthCapture&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;It there&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 23:16:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45220#M22900</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-10T23:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45222#M22901</link>
      <description>&lt;P&gt;Thank you for the replys.&amp;nbsp; Lol,&amp;nbsp; helps if I use the most recent&amp;nbsp; Auhtorize.dll.&amp;nbsp; I now have the PriorAuthCapture in the Gateway. I made a call directly thru the gateway and I am still getting the null exception.&amp;nbsp; I know the customer parameters are correct as well as the transactionId.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&amp;nbsp; I will set load the source code and see where it is dumping&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2014 00:51:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45222#M22901</guid>
      <dc:creator>glerler</dc:creator>
      <dc:date>2014-07-11T00:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Prior AuthCapture</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45224#M22902</link>
      <description>&lt;P&gt;OK - Learned something new.&amp;nbsp;&amp;nbsp; You cannot capture a prior auth with CIM that was not orginally&amp;nbsp; created with that CIM profile.&amp;nbsp;&amp;nbsp; I am doing the auth,&amp;nbsp; creating the CIM profile,&amp;nbsp; then going back and trying to capture that auth with the new CIM profile. Doesn't work.&amp;nbsp;&amp;nbsp; So I would consider this immediate issue closed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now..&amp;nbsp; What would be the suggested means to handle that scenario?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2014 12:45:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Prior-AuthCapture/m-p/45224#M22902</guid>
      <dc:creator>glerler</dc:creator>
      <dc:date>2014-07-11T12:45:52Z</dc:date>
    </item>
  </channel>
</rss>

