<?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: InvoiceNumber not saved with AuthCapture CIM in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/32213#M16778</link>
    <description>&lt;P&gt;bug in the dll. in the CustomerGateway.cs&lt;/P&gt;</description>
    <pubDate>Tue, 18 Dec 2012 12:57:59 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-12-18T12:57:59Z</dc:date>
    <item>
      <title>InvoiceNumber not saved with AuthCapture CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/32211#M16776</link>
      <description>&lt;P&gt;I am using the CIM api and passing an invoice number to Authorize.net.&amp;nbsp; I have two seperate types of transactions, Authorize only, Capture later... and Authorize/Capture.&amp;nbsp; The code below is pulled directly from the payment module written.&amp;nbsp; Both types of transactions successfully process.&amp;nbsp; The code has been stepped through and verified that there is a valid value being passed to invoiceID in the Auth/Capture now scenario, but it does not show up in the invoice column in Auth.net where the Authorize Only does....any clues?&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works: (Authorize Only)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order oOrder = new Order(ProfileID, ADN_PaymentProfileID, ADN_AddressID);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oOrder.InvoiceNumber = invoiceID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oOrder.AddLineItem("1", "Application Fee", "", 1, ApplicationFee, false);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // This one will be Authorize now, capture later&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AuthorizeNet.IGatewayResponse orderRespone = cg.Authorize(oOrder);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This Does Not: (Authorize/Capture now)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order oOrder = new Order(ProfileID, ADN_PaymentProfileID, ADN_AddressID);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oOrder.InvoiceNumber = invoiceID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oOrder.AddLineItem("1", "Application Fee", "", 1, ApplicationFee, false);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oOrder.AddLineItem("2", "Referal Fee", "", 1, ReferalFee, false);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AuthorizeNet.IGatewayResponse orderRespone = cg.AuthorizeAndCapture(oOrder);&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2012 05:24:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/32211#M16776</guid>
      <dc:creator>troyviney</dc:creator>
      <dc:date>2012-12-18T05:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: InvoiceNumber not saved with AuthCapture CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/32213#M16778</link>
      <description>&lt;P&gt;bug in the dll. in the CustomerGateway.cs&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2012 12:57:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/32213#M16778</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-12-18T12:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: InvoiceNumber not saved with AuthCapture CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/33367#M17887</link>
      <description>&lt;P&gt;After line 237 in CustomerGateway.cs add:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;trans.order = new orderExType();&lt;BR /&gt;trans.order.description = order.Description;&lt;BR /&gt;trans.order.invoiceNumber = order.InvoiceNumber;&lt;BR /&gt;trans.order.purchaseOrderNumber = order.PONumber;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just looked at the Authorize(Order order) method (which was working) and noticed it wasn't getting set. &amp;nbsp;Once I added it and recompiled, it worked fine.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2013 22:42:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/33367#M17887</guid>
      <dc:creator>mpantana</dc:creator>
      <dc:date>2013-03-06T22:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: InvoiceNumber not saved with AuthCapture CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/82723#M52126</link>
      <description>&lt;P&gt;I am having the same problem, where can I find the&amp;nbsp;&lt;SPAN&gt;CustomerGateway.cs?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 03:56:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/InvoiceNumber-not-saved-with-AuthCapture-CIM/m-p/82723#M52126</guid>
      <dc:creator>rybias87</dc:creator>
      <dc:date>2022-05-18T03:56:30Z</dc:date>
    </item>
  </channel>
</rss>

