0

Anyone know where I can get a PHP wrapper for the First Data Global Gateway? I found a download directly on their website, but I'm not sure it works.

I am constantly getting the following error:

"<r_approved>FAILURE<\/r_approved><r_error>Could not connect.<\/r_error>"

I have nothing else. All info is being passed correctly. Nothing in the error log. Any ideas??

Chris
  • 4,762
  • 3
  • 44
  • 79
  • "All info is being passed correctly." - how do you know that, if every request errors out? – Sam Dufel Feb 08 '13 at 22:43
  • I have printed out all of the XML and confirmed it is correct via the documentation. The connection seems to be the issue. I can provide any info you need. – Chris Feb 08 '13 at 22:45
  • First Data requires TCP port 1129 to be open. A closed port is often the cause of not being able to connect. – None Feb 08 '13 at 22:52
  • Port 1129 is open for outgoing connections. Still no luck... – Chris Feb 11 '13 at 05:07

1 Answers1

0

Port 1129 has to be open for both incoming and outgoing. Bi-directional.

Mike
  • 16