<?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: Recurring Billing using AIM in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54413#M29401</link>
    <description>&lt;P&gt;To expand on &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/7546"&gt;@RichardH﻿&lt;/a&gt;'s comment:&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/19842"&gt;@su_smart﻿&lt;/a&gt;&amp;nbsp;is using our legacy AIM API, which does not include integration with our Automated Recurring Billing (ARB) product.&lt;BR /&gt;&lt;BR /&gt;When we created an API for ARB, it became the basis for the current Authorize.Net API, which supercedes the legacy AIM API.&lt;BR /&gt;&lt;BR /&gt;In general we recommend using the full Authorize.Net API over legacy AIM. That would give you support for one-off transactions and ARB, among other features, with one schema and one API endpoint.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Apr 2016 19:29:52 GMT</pubDate>
    <dc:creator>Lilith</dc:creator>
    <dc:date>2016-04-22T19:29:52Z</dc:date>
    <item>
      <title>Recurring Billing using AIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54408#M29396</link>
      <description>&lt;P&gt;Hi I am doing payment transaction using AIM,using below code:&lt;BR /&gt;Dim post_values As New Dictionary(Of String, String)()&lt;/P&gt;&lt;P&gt;post_values.Add("x_login", ApiLogin)&lt;BR /&gt;post_values.Add("x_tran_key", TransactionKey)&lt;BR /&gt;post_values.Add("x_delim_data", "TRUE")&lt;BR /&gt;post_values.Add("x_delim_char", "|")&lt;BR /&gt;post_values.Add("x_relay_response", "FALSE")&lt;BR /&gt;post_values.Add("x_type", "AUTH_CAPTURE")&lt;BR /&gt;post_values.Add("x_method", "CC")&lt;BR /&gt;post_values.Add("x_card_num", txtCardno.Text)&lt;BR /&gt;post_values.Add("x_card_code", txtcvv.Text)&lt;BR /&gt;post_values.Add("x_exp_date", ddlMonth.SelectedValue + "" + ddlYear.SelectedValue)&lt;BR /&gt;post_values.Add("x_amount", "0.1")&lt;BR /&gt;post_values.Add("x_description", "")&lt;BR /&gt;post_values.Add("x_first_name", "NAMEE")&lt;BR /&gt;post_values.Add("x_last_name", "LNAME")&lt;BR /&gt;Dim post_string As [String] = ""&lt;BR /&gt;For Each post_value As KeyValuePair(Of String, String) In post_values&lt;BR /&gt;post_string += post_value.Key + "=" + HttpUtility.UrlEncode(post_value.Value) + "&amp;amp;"&lt;BR /&gt;Next&lt;BR /&gt;post_string = post_string.TrimEnd("&amp;amp;"c)&lt;/P&gt;&lt;P&gt;'Create an HttpWebRequest object to communicate with Authorize.net&lt;BR /&gt;Dim objRequest As HttpWebRequest = DirectCast(WebRequest.Create(post_url), HttpWebRequest)&lt;BR /&gt;objRequest.Method = "POST"&lt;BR /&gt;objRequest.ContentLength = post_string.Length&lt;BR /&gt;objRequest.ContentType = post_url&lt;/P&gt;&lt;P&gt;'post data is sent as a stream&lt;BR /&gt;Dim myWriter As StreamWriter = Nothing&lt;BR /&gt;myWriter = New StreamWriter(objRequest.GetRequestStream())&lt;BR /&gt;myWriter.Write(post_string)&lt;BR /&gt;myWriter.Close()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I am looking recuuring billing implementation on this code,Please help how I can do that? Help me asap.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 06:41:57 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54408#M29396</guid>
      <dc:creator>su_smart</dc:creator>
      <dc:date>2016-04-22T06:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Recurring Billing using AIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54410#M29398</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/19842"&gt;@su_smart﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest starting with our API Reference and look under &lt;A href="http://developer.authorize.net/api/reference/index.html#recurring-billing" target="_self"&gt;Recurring Billing&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 15:53:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54410#M29398</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2016-04-22T15:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Recurring Billing using AIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54413#M29401</link>
      <description>&lt;P&gt;To expand on &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/7546"&gt;@RichardH﻿&lt;/a&gt;'s comment:&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/19842"&gt;@su_smart﻿&lt;/a&gt;&amp;nbsp;is using our legacy AIM API, which does not include integration with our Automated Recurring Billing (ARB) product.&lt;BR /&gt;&lt;BR /&gt;When we created an API for ARB, it became the basis for the current Authorize.Net API, which supercedes the legacy AIM API.&lt;BR /&gt;&lt;BR /&gt;In general we recommend using the full Authorize.Net API over legacy AIM. That would give you support for one-off transactions and ARB, among other features, with one schema and one API endpoint.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 19:29:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54413#M29401</guid>
      <dc:creator>Lilith</dc:creator>
      <dc:date>2016-04-22T19:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Recurring Billing using AIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54433#M29420</link>
      <description>&lt;P&gt;Hi Thanks for reply,I have few questions:&lt;/P&gt;&lt;P&gt;a&amp;gt; You said the code I am using for AIM is outdated? Is it no more used? Or it just doesn't have feature to integrate Recurring Billing functionality.&lt;/P&gt;&lt;P&gt;b&amp;gt;If my code is old one then please guide me new AIM inetgration code?Is it still called AIM or name has been changed.&lt;/P&gt;&lt;P&gt;c&amp;gt;Also guide me recurring billing code.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2016 07:34:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54433#M29420</guid>
      <dc:creator>su_smart</dc:creator>
      <dc:date>2016-04-25T07:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Recurring Billing using AIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54436#M29423</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/19842"&gt;@su_smart﻿&lt;/a&gt;&amp;nbsp;We haven't phased out the Name-Value Pair APIs, including AIM, yet. But AIM was only designed for transaction processing, and has no support for recurring billing.&lt;BR /&gt;&lt;BR /&gt;We're encouraging developers to use the Authorize.Net API, which includes transaction processing (AIM) and recurring billing (ARB) functionality. Please visit &lt;A href="https://developer.authorize.net/api/reference/index.html" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html&lt;/A&gt; for the documentation.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2016 17:00:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Recurring-Billing-using-AIM/m-p/54436#M29423</guid>
      <dc:creator>Lilith</dc:creator>
      <dc:date>2016-04-25T17:00:14Z</dc:date>
    </item>
  </channel>
</rss>

