Re: Barclays ePDQ MPI Integration

2008-07-28 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Just Bumping and hopefully someone will have dealt with this...

>Heya Folks,
>
>Has anyone out there had any success in connecting via XML to BarclayCards 
>ePDQ MPI?
>
>Having some troubles and would like some help . .. example code would be 
>tremendous...
>
>Thank you in advance
>
>Paul 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309787
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Barclays ePDQ MPI Integration

2008-07-28 Thread Paul Vernon
I've never used BarclayCard to do this but have used many, many others... Do
you have any URL's to documentation, or a specific problem you need to test
for? I can certainly take a look for you...

Paul

> 
> Just Bumping and hopefully someone will have dealt with this...
> 
> >Heya Folks,
> >
> >Has anyone out there had any success in connecting via XML to
> BarclayCards ePDQ MPI?
> >
> >Having some troubles and would like some help . .. example code would
> be tremendous...
> >
> >Thank you in advance
> >
> >Paul
> 




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309788
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Barclays ePDQ MPI Integration

2008-07-28 Thread Les Mizzell
>> Has anyone out there had any success in connecting via XML to BarclayCards 
>> ePDQ MPI?


I have a Barclays payment gateway set up for a company that sells 
insurance to traveling medical personal. I've had a death in the family 
and will be out for a few days, but would be happy to assist towards the 
end of the week.

Hardest part was the lack of any type of sandbox text environment to be 
sure it was working correctly! You could only run *real* transactions 
through the Barclays system. Ack!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309811
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Barclays ePDQ MPI Integration

2008-07-28 Thread Paul Giesenhagen
Thank you Les, I am looking for the code that is posting to the bank for 
authorization .. anything you can provide you can email to [EMAIL PROTECTED]

Thank you!


-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]
Sent: Monday, July 28, 2008 1:54 PM
To: CF-Talk
Subject: Re: Barclays ePDQ MPI Integration

>> Has anyone out there had any success in connecting via XML to BarclayCards 
>> ePDQ MPI?


I have a Barclays payment gateway set up for a company that sells
insurance to traveling medical personal. I've had a death in the family
and will be out for a few days, but would be happy to assist towards the
end of the week.

Hardest part was the lack of any type of sandbox text environment to be
sure it was working correctly! You could only run *real* transactions
through the Barclays system. Ack!



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309817
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Barclays ePDQ MPI Integration

2008-08-14 Thread Paul Marsden
Hi Paul,

I've connected up a client to Barclays EPDQ via ColdFusion. If this is any 
help, here is the code:


 




















https://secure2.epdq.co.uk/cgi-bin/CcxBarclaysEpdq.e"; 
METHOD="post">
http://secure2.epdq.co.uk/cgi-bin/CcxBarclaysEpdqEncTool.e";>








#cfhttp.filecontent#


















Once submitted, the form will send the user to Barclays page. If an error is 
found, make sure you told the Barclays ePDQ front end the precise url you are 
sending from e.g. if the page above is called transaction.cfm this is what you 
must add to the ePDQ front end (found at 
https://secure2.epdq.co.uk/cgi-bin/ClearCommerce_Engine/#your-account-number#)

Also, make sure that there is the relevant security on the directory that this 
file sits in (basic authentication). Not the best thing to do to your 
directory, but required for this function nonetheless.

Once the Barclays pages are filled out by the user they will be sent back to 
your transaction.cfm page. At the same time, the order information will be send 
to the page you specified in the ePDQ front end (the return URL). On this page 
you can pick up the information as follows:























I hope this works for you. 

If I've made any mistakes or typos above, I apologise!

Good luck.

Paul M 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310945
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Barclays ePDQ MPI Integration

2008-08-14 Thread Paul Stewart
i had to set this up about 3 or 4 years ago and after much angst was 
told by my host that EDPQ was not comptatible with CF (i had to use 
PERL) . I don't know if thats still the case though - worth a check with 
Barclays

Paul Marsden wrote:
> Hi Paul,
>
> I've connected up a client to Barclays EPDQ via ColdFusion. If this is any 
> help, here is the code:
>
> 
>  
> 
> 
> 
>
> 
> 
>
> 
> 
>
> 
> 
>
> 
> 
>
> 
> 
>
> 
> https://secure2.epdq.co.uk/cgi-bin/CcxBarclaysEpdq.e"; 
> METHOD="post">
>  URL="http://secure2.epdq.co.uk/cgi-bin/CcxBarclaysEpdqEncTool.e";>
> 
> 
>  VALUE="#variables.chargetype#">
> 
>  VALUE="#variables.currencycode#">
> 
> 
> 
> #cfhttp.filecontent#
> 
>
> 
>
> 
>
> 
> 
>
> 
>
> 
>
> 
>
> 
>
>
> Once submitted, the form will send the user to Barclays page. If an error is 
> found, make sure you told the Barclays ePDQ front end the precise url you are 
> sending from e.g. if the page above is called transaction.cfm this is what 
> you must add to the ePDQ front end (found at 
> https://secure2.epdq.co.uk/cgi-bin/ClearCommerce_Engine/#your-account-number#)
>
> Also, make sure that there is the relevant security on the directory that 
> this file sits in (basic authentication). Not the best thing to do to your 
> directory, but required for this function nonetheless.
>
> Once the Barclays pages are filled out by the user they will be sent back to 
> your transaction.cfm page. At the same time, the order information will be 
> send to the page you specified in the ePDQ front end (the return URL). On 
> this page you can pick up the information as follows:
>
>
> 
> 
>
> 
> 
>
> 
>
> 
>
> 
>
> 
>
>  addnewline="Yes">
>
> 
>
> 
>
>
> I hope this works for you. 
>
> If I've made any mistakes or typos above, I apologise!
>
> Good luck.
>
> Paul M 
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310960
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4