0
votes
0answers
26 views

how to send live transaction to test server authorize.net via activemerchant

I need to send my sample transactions as "live" transactions to the test gateway for authorize.net so that they show up in the reports on their website under my test account. Test transactions are ...
1
vote
0answers
22 views

Getting error 87 at payment Authorize.net in Rails 3

I have created a test account with Authorize.net. My development environment is rails 3 and I am trying to implement the Server Integration Method (SIM) by using static IP. But I am getting an error: ...
0
votes
0answers
40 views

Make Rails and Spree talk to Quickbooks POS

I'm building a Rails ecommerce site on the Spree engine and was wondering if anyone knew a way to get Spree to talk to Quickbooks POS in order to manage inventory? I wasn't sure if this was something ...
1
vote
2answers
180 views

Active Merchant and Authorize.net returning failure in production

I have an app that has some basic ecommerce activity. I tried it with a test authorize.net account, and it works fine. I entered in the APIs for production mode though, and I keep getting redirected ...
0
votes
0answers
21 views

Using eChecks on Authorize.net with active_merchant [duplicate]

Possible Duplicate: What is the best way to organize automatic payout at the website? I have problems trying to find information about sending echecks using Authorize.net with ...
0
votes
1answer
227 views

cannot create a customer profile with authorize.net CIM and active merchant with dev test account

I created a developer account with authorize.net and I am trying to create a customer profile via activemerchant. > GATEWAY.create_customer_profile(:profile => { :merchant_customer_id => ...
1
vote
1answer
125 views

Two almost identical Rails projects, missing gem helper file in one but not the other

I have two rails projects under the same parent within my home directory with the same environment. Both use the authorize-net (1.5.2) gem. I'm using ruby 1.8.7 (2012-02-08 patchlevel 358) ...
0
votes
1answer
136 views

Authorize.net Token Expiration

So everytime a customer enters the credit card information on my site, their credit card information gets stored (partially) in the database along with the corresponding gateway payment token for ...
0
votes
1answer
474 views

Authorize.net CIM Rails implementation sample code

Authorize.net provides some sample code for using CIM with ruby but its uses XML. I am would like to do this with a more rails like method similar to the following AIM transaction code provided by ...
0
votes
1answer
448 views

How to simulate failure conditions for ActiveMerchant and Authorize.net credit card processing?

I've integrated ActiveMerchant into my Rails 3 app more or less along the lines outlined in the RailsCast on the topic using Authorize.net as my gateway. I'm running the gateway in test mode ...
2
votes
0answers
178 views

rails 3 get data from an association and display in flash message

I'm using ActiveMerchant with Authorize.net and already setup 2 models Order and Transaction. (http://railscasts.com/episodes/145-integrating-active-merchant) I would like to get error message from ...
0
votes
1answer
323 views

Can't connect to Authorize.net Test Account with ActiveMerchant

I signed up for a test account with Authorize.net because you can't do test transaction with the CIM service except through a test account. I am using ActiveMerchant::Billing::AuthorizeNetCimGateway, ...
1
vote
2answers
408 views

ActiveMerchant Authorize.net ARB and CIM Phone?

I am unable to store phone number to either an ARB or CIM profile. Everything else stores perfect, but phone number won't save. We tried '1111111111' as well. Is :phone not the correct option name? ...
1
vote
1answer
201 views

cucumber and activemerchant duplicate transaction problem

I was following this code for cucumber testing with activemerchant and authorize.net(I know it's old but it's the one that worked for me) ...
1
vote
1answer
821 views

How to Resolve ActiveMerchant Authorize.net Gateway Issue

I get a segmentation fault whenever I try to call authorize on the Authorize.net gateway whether I am using test or live credentials. I am using the latest version of the ActiveMerchant gem. Any ideas ...
0
votes
1answer
707 views

How to Integrate Authorize.Net ARB and AIM together

I want to Integrate Authorized.Net ARB and AIM together using rails. Actually, I want Instant payment when user signs up today and I want the subscription to start today. for this i want to charge ...
1
vote
2answers
1k views

Problems with API login/trans key w/ ActiveMerchant and Authorize.net

I'm having an issue getting authorize.net to run credit card transactions from my rails app. Here is what is in my environment.rb if ENV['RAILS_ENV'] != 'production' ::GATEWAY = gateway = ...
1
vote
2answers
748 views

Authorize.net Parameters with activemerchant

I'm using authorize.net and activemerchant in a rails app. When I make a purchase authorize.net sends back an email with information about the purchase. I should be able to send them the billing and ...