Re: Clearing credit card data after capture

2011-02-28 Thread David E Jones
On Feb 28, 2011, at 2:53 PM, carsonrotisserie wrote: > Just to give an update, I solved this problem by enhancing the method > PaymentGatewayServices.processAuthResult to replace the credit card number > after the authorization is complete. > > String number = (String)creditCard.get("cardNumbe

Re: Clearing credit card data after capture

2011-02-28 Thread carsonrotisserie
ring credit card numbers is not the best practice. -- View this message in context: http://ofbiz.135035.n4.nabble.com/Clearing-credit-card-data-after-capture-tp203987p3328916.html Sent from the OFBiz - Dev mailing list archive at Nabble.com.

Re: Clearing credit card data after capture

2010-03-26 Thread carsonrotisserie
Great, thanks BJ! I will give it a try. -- View this message in context: http://n4.nabble.com/Clearing-credit-card-data-after-capture-tp203987p1692770.html Sent from the OFBiz - Dev mailing list archive at Nabble.com.

Re: Clearing credit card data after capture

2010-03-26 Thread BJ Freeman
check the CreditCard Entity in the /application/accounting/entitydef/entitymodel.xml also cruise the other entities. Do a search of the code that interacts with CreditCard entity and the ALias CC. also check the schedule services to re-authorize cc http://cwiki.apache.org/confluence/display/OFBADMI

Re: Clearing credit card data after capture

2010-03-26 Thread carsonrotisserie
w this message in context: http://n4.nabble.com/Clearing-credit-card-data-after-capture-tp203987p1692541.html Sent from the OFBiz - Dev mailing list archive at Nabble.com.

Re: Clearing credit card data after capture

2010-03-26 Thread BJ Freeman
not all gateways in ofbiz provide the functionality of cybersource. you can use paypal the same way. = BJ Freeman http://bjfreeman.elance.com Strategic Power Office with Supplier Automation Specialtymarket.c

Re: Clearing credit card data after capture

2010-03-26 Thread carsonrotisserie
ke sure you store the request token from the initial authorization and then on the captures, credits, re-auths, instead of passing the cc number into it, you just pass the request token. -- View this message in context: http://n4.nabble.com/Clearing-credit-card-data-after-capture-tp203987p169247

Re: Clearing credit card data after capture

2009-06-09 Thread Vince Clark
From: "Scott Gray" To: dev@ofbiz.apache.org Sent: Thursday, June 4, 2009 11:59:44 PM GMT -07:00 US/Canada Mountain Subject: Clearing credit card data after capture Hi All, I plan to add a configuration option to clear credit card data once there are no more auths pending against it. When

Re: Clearing credit card data after capture

2009-06-05 Thread BJ Freeman
You are correct at this time banks are requiring a scan from their provider and filling out a form. Your also correct that it is being lobbied in the Congress but Congress is favoring even heavier restrictions. http://chuvakin.blogspot.com/2009/04/thoughts-and-notes-from-pci-dss-hearing.html here

Re: Clearing credit card data after capture

2009-06-05 Thread David E Jones
This isn't necessarily true. I'm not a lawyer, and I haven't read all of the docs... only a few articles on the topic, and I'm not even sure what is finalized at this point since a lot of these things seem to be tentative policies that aren't fleshed out yet. There are always alternatives

Re: Clearing credit card data after capture

2009-06-05 Thread Scott Gray
Cool thanks, I'll look into it. Regards Scott On 5/06/2009, at 11:10 PM, David E Jones wrote: The more common recurring stuff in OFBiz right now is recurring orders using an auto-order shopping list. You could certainly check those before whacking the CC# and that would handle it. -Davi

Re: Clearing credit card data after capture

2009-06-05 Thread David E Jones
The more common recurring stuff in OFBiz right now is recurring orders using an auto-order shopping list. You could certainly check those before whacking the CC# and that would handle it. -David On Jun 5, 2009, at 4:58 AM, Scott Gray wrote: Thanks David, ProductStore it is. About the r

Re: Clearing credit card data after capture

2009-06-05 Thread Scott Gray
Thanks David, ProductStore it is. About the recurring billing I was hoping there would be someway to check if the cc is being used for it and to leave the information in place. That way we'd only be clearing unused cc data. I'm going to need to check for any pending transactions/payment p

Re: Clearing credit card data after capture

2009-06-05 Thread BJ Freeman
as of July 2010 this will be a mute point. the only payments systems that ofbiz can use will be Paypal IPN or Google checkout by default. the only way that ofbiz can be used with any other gateway and Visa CC, is when a company takes the ofbiz code and makes it their own and becomes responsible fo

Re: Clearing credit card data after capture

2009-06-05 Thread David E Jones
On Jun 4, 2009, at 11:59 PM, Scott Gray wrote: Hi All, I plan to add a configuration option to clear credit card data once there are no more auths pending against it. When I say clear the data I mean remove the expiry date and credit card number except for the last 4 digits. Any thoug

Re: Clearing credit card data after capture

2009-06-05 Thread Scott Gray
Thanks Tim, If I'm not wrong I think the payment.properties file is deprecated in favor of PaymentGatewayConfig and the PaymentGateway* entities. I could put the flag on the ProductStore entity but if I did it would probably need to perform the same function regardless of the processor b

Re: Clearing credit card data after capture

2009-06-04 Thread Tim Ruppert
I'd probably put the configuration on the product store - or in the payment.properties file. The store because that's where you configure when to do the capture - payment.properties because many of the processors might not support being able to. Cheers, Tim -- Tim Ruppert HotWax Media http://w

Clearing credit card data after capture

2009-06-04 Thread Scott Gray
Hi All, I plan to add a configuration option to clear credit card data once there are no more auths pending against it. When I say clear the data I mean remove the expiry date and credit card number except for the last 4 digits. Any thoughts on where this should be configurable/how it sh