re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Wally Kolcz

Flex can pass the cc information to a scripting language such 
as asp.net, php, jsp, or CF. From there you can use any of the API's offered by 
the various CC processing companies to complete the transactions and pass the 
information back to flex to display. Or you might be able to use URLRequest or 
sendToURL 



From: Scott h...@netprof.us
Sent: Wednesday, March 04, 2009 7:00 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Credit card processing in Flex 

Anyone have a website or information that references how to process

credit cards through flex?

Thanks

   Scott






Re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Ashish Verma
I think you have to integrate with some Payment Gateway. Contact with Paypal
or other CC service provider they could give you sample account for testing
and URL also on their you could redirect you payment request from Flex using
navigateURL() or ExternalInterface.




Best,
Ashish

On Wed, Mar 4, 2009 at 8:39 PM, Scott h...@netprof.us wrote:

   Anyone have a website or information that references how to process
 credit cards through flex?

 Thanks
 Scott
 



re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Scott
I'm using CF on the backend...  What I'm trying to figure out is the SSL
piece for Flex.  Previously, I just insured that the user went to
https://www.mysecuresite.com https://www.mysecuresite.com/  before
accepting credit card information.  How does this work with Flex?

 



From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Wally Kolcz
Sent: Wednesday, March 04, 2009 9:04 AM
To: flexcoders@yahoogroups.com
Subject: {Disarmed} re: [flexcoders] Credit card processing in Flex

 

Flex can pass the cc information to a scripting language such as
asp.net, php, jsp, or CF. From there you can use any of the API's
offered by the various CC processing companies to complete the
transactions and pass the information back to flex to display. Or you
might be able to use URLRequest or sendToURL 



From: Scott h...@netprof.us
Sent: Wednesday, March 04, 2009 7:00 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Credit card processing in Flex 

Anyone have a website or information that references how to process
credit cards through flex?

Thanks
Scott

 




-- 
This message has been scanned for viruses and 
dangerous content by MailScanner http://www.mailscanner.info/ , and is

believed to be clean. 


re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Wally Kolcz

Your CF can handle the passing to the payment gateway via web 
service or custom CFC. Flex just acts an a messenger passing cc / user info to 
the CFC and getting the response to show the user. Do you want to do it JUST 
through Flex? 
 You can use  

sendToURL to pass information to the gateway 
via https URL and the user never sees it. 



From: Scott h...@netprof.us
Sent: Wednesday, March 04, 2009 7:15 AM
To: flexcoders@yahoogroups.com
Subject: re: [flexcoders] Credit card processing in Flex 


I'm using CF on the backend. 
What I'm trying to figure out is the SSL piece for Flex.  Previously, I
just insured that the user went to https://www.mysecuresite.com
before accepting credit card information.  How does this work with Flex?




From:



flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of 
Wally Kolcz
Sent: Wednesday, March 04, 2009
9:04 AM
To:flexcoders@yahoogroups.com
Subject: {Disarmed} re:
[flexcoders] Credit card processing in Flex



Flex can pass the cc information to a scripting
language such as asp.net, php, jsp, or CF. From there you can use any of the
API's offered by the various CC processing companies to complete the
transactions and pass the information back to flex to display. Or you might be
able to use URLRequest or sendToURL





From



:
Scott h...@netprof.us
Sent: Wednesday, March 04, 2009
7:00 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Credit card
processing in Flex



Anyone
have a website or information that references how to process

credit cards through flex?

Thanks

Scott

-- 

This message has been scanned for viruses and

dangerous content by
MailScanner, and is

believed to be clean.






RE: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Kevin Benz
I would look at the authorize.net documentation as they present the most
generic methods for HTTP based authentication. 

 

If you are talking about a client-side processing solution, it can be
accomplished but a bad idea. SWF's can be easily reverse engineered
exposing API keys, hash entries, merchant account identities and
credentials to external access. Traditional non-API Wallet approaches
(standard PayPal, Amazon FPS, Google Wallet) cannot exist in a client
only solution as they require a post-back URL with which to transact. 

 

The only secure solution has a server acting as a gateway to the payment
service with the Authorize.net documents providing many resources. Other
payment aggregators offer likewise documentation such as Cybersource,
Paypal (both Wallet and API).  A server hides the specifics (code and
metadata) from the peering eyes of those interesting in subverting your
payment service.

 

KFB

 

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Scott
Sent: Wednesday, March 04, 2009 7:09 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Credit card processing in Flex

 

Anyone have a website or information that references how to process
credit cards through flex?

Thanks
Scott




-- 
This message has been scanned for viruses and 
dangerous content by MailScanner http://www.mailscanner.info/ , and is

believed to be clean. 

image001.jpgimage002.jpg

RE: {Disarmed} RE: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Scott
I plan on having the server process the credit card order.  However, I
still have to pass the credit card information securely to my server.
The other response refers to sentourl so I'll look into that.  Is there
any other methods to send information securely to my server?

sj

 



From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Kevin Benz
Sent: Wednesday, March 04, 2009 10:00 AM
To: flexcoders@yahoogroups.com
Subject: {Disarmed} RE: [flexcoders] Credit card processing in Flex

 

I would look at the authorize.net documentation as they present the most
generic methods for HTTP based authentication. 

 

If you are talking about a client-side processing solution, it can be
accomplished but a bad idea. SWF's can be easily reverse engineered
exposing API keys, hash entries, merchant account identities and
credentials to external access. Traditional non-API Wallet approaches
(standard PayPal, Amazon FPS, Google Wallet) cannot exist in a client
only solution as they require a post-back URL with which to transact. 

 

The only secure solution has a server acting as a gateway to the payment
service with the Authorize.net documents providing many resources. Other
payment aggregators offer likewise documentation such as Cybersource,
Paypal (both Wallet and API).  A server hides the specifics (code and
metadata) from the peering eyes of those interesting in subverting your
payment service.

 

KFB

 

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Scott
Sent: Wednesday, March 04, 2009 7:09 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Credit card processing in Flex

 

Anyone have a website or information that references how to process
credit cards through flex?

Thanks
Scott


-- 
This message has been scanned for viruses and 
dangerous content by MailScanner http://www.mailscanner.info/ , and is

believed to be clean. 




-- 
This message has been scanned for viruses and 
dangerous content by MailScanner http://www.mailscanner.info/ , and is

believed to be clean. 


RE: {Disarmed} RE: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Kevin Benz
If the browser hosting your Flex component is connected in a HTTPS
session, then yes. I'm not aware of being able to start HTTPS
communication from a HTTP session. I believe that the SSL key (session
in place) needs to be in-place before you do your submit so posting
blindly to a HTTPS URL is not necessarily secure.

Of course, the ugly solution, a popup HTML window doing HTTPS directly.

You can also encrypt yourself in Actionscript with as3crypto (Google
code) although this might violate PCI/SET standards.

In Air, you can start an HTTPS session of its own.

KFB

 

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Scott
Sent: Wednesday, March 04, 2009 8:24 AM
To: flexcoders@yahoogroups.com
Subject: RE: {Disarmed} RE: [flexcoders] Credit card processing in Flex

 

I plan on having the server process the credit card order.  However, I
still have to pass the credit card information securely to my server.
The other response refers to sentourl so I'll look into that.  Is there
any other methods to send information securely to my server?

sj

 



From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Kevin Benz
Sent: Wednesday, March 04, 2009 10:00 AM
To: flexcoders@yahoogroups.com
Subject: {Disarmed} RE: [flexcoders] Credit card processing in Flex

 

I would look at the authorize.net documentation as they present the most
generic methods for HTTP based authentication. 

 

If you are talking about a client-side processing solution, it can be
accomplished but a bad idea. SWF's can be easily reverse engineered
exposing API keys, hash entries, merchant account identities and
credentials to external access. Traditional non-API Wallet approaches
(standard PayPal, Amazon FPS, Google Wallet) cannot exist in a client
only solution as they require a post-back URL with which to transact. 

 

The only secure solution has a server acting as a gateway to the payment
service with the Authorize.net documents providing many resources. Other
payment aggregators offer likewise documentation such as Cybersource,
Paypal (both Wallet and API).  A server hides the specifics (code and
metadata) from the peering eyes of those interesting in subverting your
payment service.

 

KFB

 

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Scott
Sent: Wednesday, March 04, 2009 7:09 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Credit card processing in Flex

 

Anyone have a website or information that references how to process
credit cards through flex?

Thanks
Scott


-- 
This message has been scanned for viruses and 
dangerous content by MailScanner http://www.mailscanner.info/ , and is

believed to be clean. 


-- 
This message has been scanned for viruses and 
dangerous content by MailScanner http://www.mailscanner.info/ , and is

believed to be clean. 




-- 
This message has been scanned for viruses and 
dangerous content by MailScanner http://www.mailscanner.info/ , and is

believed to be clean. 

image001.jpgimage002.jpg

Re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Jeffry Houser


Make sure you SWF is served up on an HTTPS page.  And also make sure 
your remoting channel / gateway using HTTPS to communicate to and from 
the CF Server. 


Scott wrote:


I'm using CF on the backend...  What I'm trying to figure out is the 
SSL piece for Flex.  Previously, I just insured that the user went to 
https://www.mysecuresite.com https://www.mysecuresite.com/ before 
accepting credit card information.  How does this work with Flex?


 




*From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] 
*On Behalf Of *Wally Kolcz

*Sent:* Wednesday, March 04, 2009 9:04 AM
*To:* flexcoders@yahoogroups.com
*Subject:* {Disarmed} re: [flexcoders] Credit card processing in Flex

 

Flex can pass the cc information to a scripting language such as 
asp.net, php, jsp, or CF. From there you can use any of the API's 
offered by the various CC processing companies to complete the 
transactions and pass the information back to flex to display. Or you 
might be able to use URLRequest or sendToURL




*From*: Scott h...@netprof.us
*Sent*: Wednesday, March 04, 2009 7:00 AM
*To*: flexcoders@yahoogroups.com
*Subject*: [flexcoders] Credit card processing in Flex

Anyone have a website or information that references how to process
credit cards through flex?

Thanks
Scott

 






--
This message has been scanned for viruses and
dangerous content by *MailScanner* http://www.mailscanner.info/, and is
believed to be clean.


--
Jeffry Houser, Technical Entrepreneur
Adobe Community Expert: http://tinyurl.com/684b5h
http://www.twitter.com/reboog711  | Phone: 203-379-0773
--
Easy to use Interface Components for Flex Developers
http://www.flextras.com?c=104
--
http://www.theflexshow.com
http://www.jeffryhouser.com
--
Part of the DotComIt Brain Trust