Credit card processing - experiences, code?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

Credit card processing - experiences, code?

Matthias Berth-2
Hello all,

I am looking for a payment processing provider for my seaside
e-commerce application. I saw that Ramon Leon uses authorize.net
(there is some code in his development image [1]).  I'd need to accept
at least US dollars and euros, but it looks like authorize.net does
only dollars.

I am curious about your experiences with integrating credit card
processing services in Seaside applications (or any web app).  Anyone
interested in starting a general package for Seaside, along the lines
of  ActiveMerchant for Rails[2] ?


Cheers

Matthias

[1] http://onsmalltalk.com/my-squeak-image/
[2] http://www.activemerchant.org/
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: Credit card processing - experiences, code?

Boris Popov, DeepCove Labs (SNN)
Matthias,

I'm certainly as biased as they come because we built, maintain and
continue to improve a large scale payment processing system that is
specifically designed to cover a wide variety of international payment
options, credit cards included. As a bonus, it's all built in
VisualWorks Smalltalk ;)

https://www.pacnetservices.com/services/creditcard/

Cheers,

-Boris

--
+1.604.689.0322
DeepCove Labs Ltd.
4th floor 595 Howe Street
Vancouver, Canada V6C 2T5
http://tinyurl.com/r7uw4

[hidden email]

CONFIDENTIALITY NOTICE

This email is intended only for the persons named in the message header.
Unless otherwise indicated, it contains information that is private and
confidential. If you have received it in error, please notify the sender
and delete the entire message including any attachments.

Thank you.

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of
Matthias Berth
Sent: Wednesday, October 29, 2008 1:49 PM
To: Seaside - general discussion
Subject: [Seaside] Credit card processing - experiences, code?

Hello all,

I am looking for a payment processing provider for my seaside
e-commerce application. I saw that Ramon Leon uses authorize.net
(there is some code in his development image [1]).  I'd need to accept
at least US dollars and euros, but it looks like authorize.net does
only dollars.

I am curious about your experiences with integrating credit card
processing services in Seaside applications (or any web app).  Anyone
interested in starting a general package for Seaside, along the lines
of  ActiveMerchant for Rails[2] ?


Cheers

Matthias

[1] http://onsmalltalk.com/my-squeak-image/
[2] http://www.activemerchant.org/
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Credit card processing - experiences, code?

Matthias Berth-2
Boris,

this looks really good. Funny - I knew about you from the Industry
Misinterpretations podcast but somehow thought it was all about
reading checks.

So do I get some example code, in any language? How awesome it would
be to have a small Seaside example application... ;-)


Cheers


Matthias


On Wed, Oct 29, 2008 at 9:58 PM, Boris Popov <[hidden email]> wrote:

> Matthias,
>
> I'm certainly as biased as they come because we built, maintain and
> continue to improve a large scale payment processing system that is
> specifically designed to cover a wide variety of international payment
> options, credit cards included. As a bonus, it's all built in
> VisualWorks Smalltalk ;)
>
> https://www.pacnetservices.com/services/creditcard/
>
> Cheers,
>
> -Boris
>
> --
> +1.604.689.0322
> DeepCove Labs Ltd.
> 4th floor 595 Howe Street
> Vancouver, Canada V6C 2T5
> http://tinyurl.com/r7uw4
>
> [hidden email]
>
> CONFIDENTIALITY NOTICE
>
> This email is intended only for the persons named in the message header.
> Unless otherwise indicated, it contains information that is private and
> confidential. If you have received it in error, please notify the sender
> and delete the entire message including any attachments.
>
> Thank you.
>
> -----Original Message-----
> From: [hidden email]
> [mailto:[hidden email]] On Behalf Of
> Matthias Berth
> Sent: Wednesday, October 29, 2008 1:49 PM
> To: Seaside - general discussion
> Subject: [Seaside] Credit card processing - experiences, code?
>
> Hello all,
>
> I am looking for a payment processing provider for my seaside
> e-commerce application. I saw that Ramon Leon uses authorize.net
> (there is some code in his development image [1]).  I'd need to accept
> at least US dollars and euros, but it looks like authorize.net does
> only dollars.
>
> I am curious about your experiences with integrating credit card
> processing services in Seaside applications (or any web app).  Anyone
> interested in starting a general package for Seaside, along the lines
> of  ActiveMerchant for Rails[2] ?
>
>
> Cheers
>
> Matthias
>
> [1] http://onsmalltalk.com/my-squeak-image/
> [2] http://www.activemerchant.org/
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: Credit card processing - experiences, code?

Boris Popov, DeepCove Labs (SNN)
Matthias,

We don't have any packaged code samples in Smalltalk, but we have a
whole load of test cases from which we could extract some snippets to
get you going quickly if you got that far. The API itself is basic HTTPS
POST of key-value pairs with simple signing algorithm.

Cheers,

-Boris

--
+1.604.689.0322
DeepCove Labs Ltd.
4th floor 595 Howe Street
Vancouver, Canada V6C 2T5
http://tinyurl.com/r7uw4

[hidden email]

CONFIDENTIALITY NOTICE

This email is intended only for the persons named in the message header.
Unless otherwise indicated, it contains information that is private and
confidential. If you have received it in error, please notify the sender
and delete the entire message including any attachments.

Thank you.

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of
Matthias Berth
Sent: Wednesday, October 29, 2008 2:31 PM
To: Seaside - general discussion
Subject: Re: [Seaside] Credit card processing - experiences, code?

Boris,

this looks really good. Funny - I knew about you from the Industry
Misinterpretations podcast but somehow thought it was all about
reading checks.

So do I get some example code, in any language? How awesome it would
be to have a small Seaside example application... ;-)


Cheers


Matthias


On Wed, Oct 29, 2008 at 9:58 PM, Boris Popov <[hidden email]>
wrote:

> Matthias,
>
> I'm certainly as biased as they come because we built, maintain and
> continue to improve a large scale payment processing system that is
> specifically designed to cover a wide variety of international payment
> options, credit cards included. As a bonus, it's all built in
> VisualWorks Smalltalk ;)
>
> https://www.pacnetservices.com/services/creditcard/
>
> Cheers,
>
> -Boris
>
> --
> +1.604.689.0322
> DeepCove Labs Ltd.
> 4th floor 595 Howe Street
> Vancouver, Canada V6C 2T5
> http://tinyurl.com/r7uw4
>
> [hidden email]
>
> CONFIDENTIALITY NOTICE
>
> This email is intended only for the persons named in the message
header.
> Unless otherwise indicated, it contains information that is private
and
> confidential. If you have received it in error, please notify the
sender

> and delete the entire message including any attachments.
>
> Thank you.
>
> -----Original Message-----
> From: [hidden email]
> [mailto:[hidden email]] On Behalf Of
> Matthias Berth
> Sent: Wednesday, October 29, 2008 1:49 PM
> To: Seaside - general discussion
> Subject: [Seaside] Credit card processing - experiences, code?
>
> Hello all,
>
> I am looking for a payment processing provider for my seaside
> e-commerce application. I saw that Ramon Leon uses authorize.net
> (there is some code in his development image [1]).  I'd need to accept
> at least US dollars and euros, but it looks like authorize.net does
> only dollars.
>
> I am curious about your experiences with integrating credit card
> processing services in Seaside applications (or any web app).  Anyone
> interested in starting a general package for Seaside, along the lines
> of  ActiveMerchant for Rails[2] ?
>
>
> Cheers
>
> Matthias
>
> [1] http://onsmalltalk.com/my-squeak-image/
> [2] http://www.activemerchant.org/
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: Credit card processing - experiences, code?

Ramon Leon-5
In reply to this post by Matthias Berth-2
> e-commerce application. I saw that Ramon Leon uses authorize.net
> (there is some code in his development image [1]).  I'd need to accept
> at least US dollars and euros, but it looks like authorize.net does
> only dollars.

I don't actually, that was an unfinished prototype but I never got around to
needing it.  I've not yet needed to process cards from squeak, I use
existing .Net based webservices interacting with squeak via SOAP for my card
processing needs.

Ramon Leon
http://onsmalltalk.com

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Credit card processing - experiences, code?

SeanTAllen
In reply to this post by Matthias Berth-2

On Oct 29, 2008, at 4:49 PM, Matthias Berth wrote:

> I am curious about your experiences with integrating credit card
> processing services in Seaside applications (or any web app).  Anyone
> interested in starting a general package for Seaside, along the lines
> of  ActiveMerchant for Rails[2] ?

We have perl code for transfirst ( us dollars only ), protx ( mostly  
pounds )
and chase paymentech that we plan on porting in the not too soon future
and the not so distant, probably doesn't help you know but might in a  
few months.

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside