Displaying 20 results from an estimated 70000 matches similar to: "Authorize.Net Gateway using ActiveMerchant"
2010 Mar 22
2
ActiveMerchant, Authorize.net and Email Receipts
I''ve posted this on RailsForum.com and in the ActiveMerchant talk
group, and haven''t received an answer, so I figure I''ll try here.
Hello. I''ve been searching for information on this for a while, but my
google fu is evidently weak--hardly anyone even talks about email
receipts re: ActiveMerchant, much less my specific problem.
In any case, I have a client whose
2006 May 30
2
ActiveMerchant
Is anyone using ActiveMerchant currently?
I''ve seen it recommended on this list several times, but it seems kind
of buggy and incomplete and I''m having trouble getting it to work.
>From the example at http://home.leetsoft.com/am/, I''ve tried:
gateway = ActiveMerchant::Base.gateway(:authorized_net)
response = gateway.capture(1000, creditcard)
..but it
2007 Mar 09
5
storing customer CC on gateway
I posted this late yesterday afternoon to no response, so I figured I''d
try once more to get the morning people''s attention.
I''m working on setting up the credit card processing part of a rails app
for my company and running into some issues. I''m currently working
with the ActiveMerchant plugin and connecting to our account at
Authorize.net.
2006 Nov 20
1
Getting started with ActiveMerchant & new Ecommerce book
Hi there
I''ve got a copy of the ''Beginning Ruby on Rails Ecommerce'' book and am
trying to integrate ActiveMerchant into my app.
My order.rb file has the line:
''include ActiveMerchant::Billing''
per the book.
My Order model also has, amongst other things, the following validation:
'' validates_inclusion_of :billing_country, :in =>
2006 Sep 11
0
ActiveMerchant Paypal Pro Support
How is ActiveMerchant''s Paypal Pro support? I am migrating a client''s
site to Rails that uses Paypal Pro and they have been pretty happy with
it (and know how to use Paypal''s website). I tried first setting up
the PayPal plugin directly, but ran into some issues and then I noticed
that ActiveMerchant has PayPal Pro, but its labeled "testing" and
2008 Oct 16
0
[Announcement] Billing Module for your SaaS web application is here: ServiceMerchant
[Announcement] Billing Module for your SaaS web application is here:
ServiceMerchant
== In two sentences
ServiceMerchant is open-source library, developed in Ruby, which takes
care of recurring billings and subscriptions of your SaaS
application.
The library sits on top of well known library ActiveMerchant and
therefore gives you the variety of choice among payment providers.
== In more details
2008 Jul 17
0
[ADV/ANN] Easy recurring billing with Authorize.net
I have just put out an update to the SaaS Rails Kit, a sample Rails
application that implements recurring billing. This update adds support for
the Authorize.net payment gateway. With the Rails Kit and Authorize.net
CIM, you get a complete and very flexible subscription billing system that
you can use as a starting point for building your software-as-a-service
Rails application, so you can skip
2011 Jan 27
1
recent activemerchant examples needed or perhaps another solution
Hi,
I have a reeally big problem with understanding how to use
ActiveMerchant, Perhaps someone would point me to a different solution
to my problem.
I need to build a little web shop which will be based in the UK, and
my customer wants to use PayPal Express Checkout, because there''s no
monthly fee.
So far I had only problems with ActiveMerchant examples because:
1) they are way too
2011 Mar 19
0
Problems with SSL dependent gems OAuth2 & ActiveMerchant
Hello all,
My application uses the OAuth2 gem (0.1.1) to connect to Facebook, and
the ActiveMerchant gem (1.12.0) to connect to PayPal. Under what is the
current Rails/Ruby distribution, both of these gems throw the following
OpenSSL::SSL::SSLError when used:
* SSL_connect returned=1 errno=0 state=SSLv3 read server certificate
B: certificate verify failed
I did some digging, and found two
2010 Feb 16
0
ActiveMerchant and Wirecard question
Hi all,
i''m developing a webapps that implement ActiveMerchant and Wirecard payment
gateway.
my question''s :
1. is wirecard have a sandbox like paypal did?
2. where can i get a test account for this?
thanks.
--
David Angga Prasetya
Ruby on Rails developer
@ http://kiranatama.com - a Ruby on Rails outsourcing company
--
You received this message because you are subscribed to
2008 Aug 24
2
config.after_initialize and development mode
Hi,
I''m using activemerchant and setting up a class variable using
config.after_initialize. It works great for the first request, but
then the variable is nil.
config.after_initialize do
ActiveMerchant::Billing::Base.mode = :test
OrderTransaction.gateway =
ActiveMerchant::Billing::PaypalGateway.new(...)
end
I''m assuming this is is due to the model reloading after each
2011 Apr 20
1
ActiveMerchant with Amazon's FPS
Hi, I want to integrate Amazon''s FPS service using Activemerchant.
I want to know that activemerchant support that?
and if yes, then can you please suggest any site to integrate Amazon''s FPS?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2009 Oct 23
1
Activemerchant
Hi All....
I have implemented activemerchant using gem.
I am using both STANDERD & EXPRESS checkout.
My EXPRESS works very well but when I use STANDERD one, paypal gives me
error like
"This transaction cannot be processed due to an invalid merchant
configuration".
Any idea whats going wrong???
Thanks in advance...
--
Posted via http://www.ruby-forum.com/.
2006 Jun 02
1
Best way to bill through LinkPoint? Is ActiveMerchant solid?
I need to set up a site to charge cards through LinkPoint. I did some
searching to see what was available, and saw that Shopify uses
ActiveMerchant. I saw that it hasn''t been touched in several months,
though perhaps that''s simply because it hasn''t needed any changes.
Just wondering what''s the best way to go about this.
Thanks for any info.
Pat
2007 Feb 21
2
ActiveMerchant Help
Does anyone know of any good resources for getting ActiveMerchant up and
running? I''m trying to get it set up via Paypal Pro and i can''t find
detailed, clear directions on setting it up. It''s hard to know where to
put what, where paypal login info goes, and how to get the certificate
files from paypal and where they go (if I even need them).
Anyone have any experience
2007 Jun 21
2
expects with returns that returns the return value of the actual method
I''m trying to test some code that''s using active_merchant using the
following test. What I''d like to be able to do is verify that purchase is
called, however, rather than specifying the return value for purchase with
returns, I''d like it to return the actual return value provided if you
called the non mocked purchase method. Is this possible?
def test_charge
2011 Apr 18
3
paypal with Active merchant
Hi, I am integrating paypal service in my application using Activemerchant.
Now I want to know how to use ActiveMerchant to make payment to Bank or
Credit card ?
for example:
I am seller and I want to pay some amount to somebody. I want to pay such
amount which will be credited in somebody''s bank account or credit card
directly ?
Please reply me as early as possible.
And also suggest
2006 Jun 30
2
Subscription Payment Model
Ok, I''m new to the world of actually charging for software, and it''s
taken me a full month to decide how to charge in a way that doesn''t make
me sleep with difficulty at nights. :) If someone can look at this and
verify I''m on the right track or give any hints/tips, I''d greatly
appreciate it.
Basically, I want each user to be able to apply
2006 Apr 22
1
Newbie .. authorize.net
I am very new to RoR. I need to do:
1. credit card authorization only
and / or
2. charge the credit card
via the Authorize.net payment gateway via RoR?
QUESTION 1.
I came across the payment module available as a ruby gem. I am wondering
if anyone has used this gem in a real life application to do the above?
The other problem was that on this page:
2008 Oct 30
9
ActiveMerchant and Encrypted Paypal Standard Checkout
Hi,
Does any know about a good resource for using ActiveMerchant to create
an encrypted button that will use Paypal''s Standard checkout mode?
Best regards,
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group,