Re: django-sagepay example

2013-04-10 Thread Bill Freeman
On Wed, Apr 10, 2013 at 3:35 PM, Mario Gudelj wrote: > What exactly are you proposing, Bill? What's the problem with simply > passing the credit card data to the gateway if you do it over SSL and not > store it? Are you saying that you're only purchasing on sites with > non-seamless gateways? > I

Re: django-sagepay example

2013-04-10 Thread Bill Freeman
On Wed, Apr 10, 2013 at 3:50 PM, sparky wrote: > @ke1g also there are very high compliance standards in the UK. You have > to be complaint or the merchants > get on your case. > you have to have port scans, SSL and some level of PCI DSS to take cards > on your site with sagepay. > > > just my 2p

Re: django-sagepay example

2013-04-10 Thread Bill Freeman
On Wed, Apr 10, 2013 at 3:22 PM, sparky wrote: > @ke1g thats a very sweeping generalisation. > > personally, we are PCI DSS level 2 compliant, have scans and all data is > transmitted using SSL. we are resellers > we also NEVER store card details EVER only transmit! I'm a newbie to > Django but h

Re: django-sagepay example

2013-04-10 Thread sparky
@ke1g also there are very high compliance standards in the UK. You have to be complaint or the merchants get on your case. you have to have port scans, SSL and some level of PCI DSS to take cards on your site with sagepay. just my 2p On Wednesday, April 10, 2013 1:15:17 PM UTC+1, ke1g wrot

Re: django-sagepay example

2013-04-10 Thread Mario Gudelj
What exactly are you proposing, Bill? What's the problem with simply passing the credit card data to the gateway if you do it over SSL and not store it? Are you saying that you're only purchasing on sites with non-seamless gateways? On 11 April 2013 05:22, sparky wrote: > @ke1g thats a very swe

Re: django-sagepay example

2013-04-10 Thread sparky
@ke1g thats a very sweeping generalisation. personally, we are PCI DSS level 2 compliant, have scans and all data is transmitted using SSL. we are resellers we also NEVER store card details EVER only transmit! I'm a newbie to Django but have implemented sagepay on 3 other languages on sites whi

Re: django-sagepay example

2013-04-10 Thread Bill Freeman
An please, indicate on your site that the credit card number will go through your site, so that I can know to never buy anything there. I suspect that I can count on my fingers and toes the number of web developers in the world who have the knowledge, patience, and diligence to securely handle cre

Re: django-sagepay example

2013-04-10 Thread sparky
wow a million times thank you! just what I needed to get going. :))) On Tuesday, April 9, 2013 5:27:12 PM UTC+1, sparky wrote: > > I want to use > django-sagepay. > > However, it doesn't seem to have any examples or test.

Re: django-sagepay example

2013-04-09 Thread Mario Gudelj
Sent the previous email prematurely. So, here is a working example: Create your checkout form and if the form is valid populate the following dict with the form data: data = { 'VPSProtocol': settings.VPS_PROTOCOL, 'TxType': settings.TXTYPE, 'Vendor

Re: django-sagepay example

2013-04-09 Thread Mario Gudelj
Hey sparky, I hope this helps: Create your checkout form and if the form is valid populate the following dict with the form data: data = { 'VPSProtocol': settings.VPS_PROTOCOL, 'TxType': settings.TXTYPE, 'VendorTxCode': b32encode(uuid.uuid4().bytes

django-sagepay example

2013-04-09 Thread sparky
I want to use django-sagepay. However, it doesn't seem to have any examples or test.py that I can learn from. being a newbie I need docs! Does anyone know of any examples of use? I'm very familiar with sagepay, just n