Archive

Author Archive

PayPal – clearing up some confusion

January 22nd, 2010 Jo Potts No comments

The PayPal site is improving, as is their service, but there are still a lot of things that aren’t made clear.

When does the buyer need a PayPal account?

A recently cleared up confusion I had was over whether a buyer had to have a PayPal account or not. For a while, I thought it was only Website Payment Pro (WPP) accounts that could take payments without the buyer having to have a PayPal account but as James recently pointed out on the bookwhen help pages, it’s simpler than that:

PayPal Business accounts (Standard & Pro) can accept payments without the buyer having a PayPal account. The buyer has to spot the tiny continue link however.

PayPal Personal accounts cannot. The buyer will see ‘Sign up for a PayPal account and continue checkout’ where the card logos and continue link normally are.

Can I use Maestro with Recurring Payments?

Another issue I had recently was with the new MasterCard Compliance rules making it compulsory to use 3D Secure when taking Maestro/Switch/Solo payments. This has unfortunately made it impossible to take a PayPal Pro Recurring Payment using these card types. PayPal help desk confirmed this. The WPP integration guide (pdf link) Chapter 15 page 122 confirms this:

3-D Secure is not supported for direct Recurring Billing and Reference Transactions. Cards that require 3-D Secure authentication cannot use these APIs; however, cards where 3-D Secure is optional can continue to process transactions without authentication. If you use either of these features in your current integration, you must exclude the Maestro card type from the available options.

Maestro and Solo are the same.

Categories: bookwhen, general, webapps Tags: ,

Year calendar 2010 (for business card)

December 1st, 2009 Jo Potts No comments

2010 Calendar

I just made a 2010 calendar to put on the back of my business card. It was a pain and there wasn’t anything simple out there already so here it is in Illustrator format. Merry Xmas!

Categories: general Tags:

This thing makes me love Ruby more

November 25th, 2009 Jo Potts No comments

I’m working on a bit of ASP.NET at the moment.
Look at this for the security access checks I’ve just come across in a control…

protected void Page_Load(object sender, EventArgs e)
{
	bool valid = false;
	DataLayer dl = new DataLayer();
	User u = dl.GetSession();
	if (u != null)
	{
		valid = true;
	}
	if (valid)
	{
		if (!IsPostBack)
		{

‘valid’ isn’t even used again. You’d only see that kind of monstrosity in .NET

Categories: general Tags: