<?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: AIM Integration Help Using Sandbox and Auhorize.net in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54379#M29371</link>
    <description>&lt;P&gt;Yup, just the post URL, loginID and transactionKey&lt;/P&gt;</description>
    <pubDate>Wed, 20 Apr 2016 11:41:16 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2016-04-20T11:41:16Z</dc:date>
    <item>
      <title>AIM Integration Help Using Sandbox and Auhorize.net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54376#M29368</link>
      <description>&lt;P&gt;Hi,I have created sandbox account and tested with my sandbox credential using below code:&lt;/P&gt;&lt;P&gt;*********************************************************************&lt;/P&gt;&lt;P&gt;Dim ApiLogin As String = System.Configuration.ConfigurationManager.AppSettings("ApiLogin")&lt;BR /&gt;Dim TransactionKey As String = System.Configuration.ConfigurationManager.AppSettings("TransactionKey")&lt;/P&gt;&lt;P&gt;Dim post_url As [String] = "&lt;A href="https://test.authorize.net/gateway/transact.dll&amp;quot;" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll"&lt;/A&gt;&lt;/P&gt;&lt;P&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;/P&gt;&lt;P&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", "1016")&lt;/P&gt;&lt;P&gt;post_values.Add("x_amount", "100")&lt;BR /&gt;post_values.Add("x_description", "")&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;post_values.Add("x_first_name", "Sud")&lt;BR /&gt;post_values.Add("x_last_name", "Mandola")&lt;BR /&gt;post_values.Add("x_address", "")&lt;BR /&gt;post_values.Add("x_state", "")&lt;BR /&gt;post_values.Add("x_zip", "")&lt;/P&gt;&lt;P&gt;Dim post_string As [String] = ""&lt;/P&gt;&lt;P&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;'returned values are returned as a stream, then read into a string&lt;BR /&gt;Dim post_response As [String]&lt;BR /&gt;Dim objResponse As HttpWebResponse = DirectCast(objRequest.GetResponse(), HttpWebResponse)&lt;BR /&gt;Using responseStream As New StreamReader(objResponse.GetResponseStream())&lt;BR /&gt;post_response = responseStream.ReadToEnd()&lt;BR /&gt;responseStream.Close()&lt;BR /&gt;End Using&lt;/P&gt;&lt;P&gt;Dim details As String() = post_response.Split("|"c)&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;I got email&amp;nbsp;&lt;SPAN&gt;Merchant Email Receipt and it seems its working ok,Now i want to switch to live mode&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;for real transaction,Please tell me what changes i need to do in my code,1 change will be putting auhorize.net apilogin and transactionkey,What else it may be(may be in &lt;A href="https://test.authorize.net/gateway/transact.dll).Please" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll).Please&lt;/A&gt; help&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 07:24:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54376#M29368</guid>
      <dc:creator>su_smart</dc:creator>
      <dc:date>2016-04-20T07:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: AIM Integration Help Using Sandbox and Auhorize.net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54379#M29371</link>
      <description>&lt;P&gt;Yup, just the post URL, loginID and transactionKey&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 11:41:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54379#M29371</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-04-20T11:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: AIM Integration Help Using Sandbox and Auhorize.net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54380#M29372</link>
      <description>&lt;P&gt;&amp;nbsp;Thanks for reply,But is there any setting change needed on Authrize.net account,I am using payment by Credit Card. Please provide me things which needs to&lt;BR /&gt;be handled carefully on production environment because I start actual money transaction.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 12:01:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54380#M29372</guid>
      <dc:creator>su_smart</dc:creator>
      <dc:date>2016-04-20T12:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: AIM Integration Help Using Sandbox and Auhorize.net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54382#M29374</link>
      <description>&lt;P&gt;On your real production account? Shouldn't need any change. but can't tell until you try doing a transaction.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 13:10:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54382#M29374</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-04-20T13:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: AIM Integration Help Using Sandbox and Auhorize.net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54394#M29384</link>
      <description>&lt;P&gt;Hi, On webresponse object,I am getting this message&lt;BR /&gt;"1|1|1|This transaction has been approved.|GOWPO1|Y|2256635797|||300.00|CC|auth_capture||Sud|Mandola|||||||||||||||||||||||6ECBBE744612FF26D728175CD0DD221B|&lt;BR /&gt;P|2|||||||||||XXXX0027|Visa||||||||||||||||"&lt;/P&gt;&lt;P&gt;Here 1|1|1| indicates that successful transaction.but Which 1 is right one to look for successfull transaction. Please help.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 05:22:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54394#M29384</guid>
      <dc:creator>su_smart</dc:creator>
      <dc:date>2016-04-21T05:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: AIM Integration Help Using Sandbox and Auhorize.net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54395#M29385</link>
      <description>&lt;P&gt;Hi, Also I want to know that Can i implement ARB through coding?I see the video that throught Authrize.net account we can add many subscriptions under ARB,But can it be done throught asp.net coding like adding new subscription for Recurring billing? Please help.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 07:54:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54395#M29385</guid>
      <dc:creator>su_smart</dc:creator>
      <dc:date>2016-04-21T07:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: AIM Integration Help Using Sandbox and Auhorize.net</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54398#M29388</link>
      <description>&lt;P&gt;That response look it is from a card present, not the card not present(think web) transaction.&lt;BR /&gt;&lt;BR /&gt;read the AIM CP doc&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://developer.authorize.net/api/upgrade_guide/" target="_blank"&gt;http://developer.authorize.net/api/upgrade_guide/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and about the ARB, read the api reference&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developer.authorize.net/api/reference/" target="_blank"&gt;https://developer.authorize.net/api/reference/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 11:39:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Integration-Help-Using-Sandbox-and-Auhorize-net/m-p/54398#M29388</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-04-21T11:39:04Z</dc:date>
    </item>
  </channel>
</rss>

