开发者

Coldfusion - Firstdata Global Gateway - Need help getting started

开发者 https://www.devze.com 2023-03-29 17:23 出处:网络
I’m using Coldfusion 9,0,0,251028 on Windows 7 64-bit. I\'m trying to change credit card processors for a website.I\'ve read the integration guide for the Web Service APIv 4.0, but it doesn\'t give

I’m using Coldfusion 9,0,0,251028 on Windows 7 64-bit.

I'm trying to change credit card processors for a website. I've read the integration guide for the Web Service API v 4.0, but it doesn't give me much in the way of how I integrate with coldfusion to开发者_StackOverflow社区 build the xml that gets enclosed in SOAP and sent.

I've talked to Firstdata's second level support and was told they don't help with programming beyond troubleshooting error codes. They also told me they have no forum concerning the web service API.

What kind of tags in coldfusion would I use to start this transaction? Does anyone know where I could find an example or instructions besides the web service api integration guide?


Here's some recommended reading on doing SOAP with ColdFusion:

Making SOAP Web Service Requests With ColdFusion And CFHTTP

SOAP Request Functions

Troubleshooting SOAP Requests and Responses

I've always found SOAP to be a pain in the ass, but if that's the only way to go, the three links above should get you there.


You will want to look at cfobject and cfinvoke. I assume you have the WSDL url, so the first thing I would do is try that like this:

<cfobject webservice = "WSDL URL" name = "testCall" />
<cfdump var="#testCall#"/>

This should show you the available methods. Then you would call those message using cfinvoke:

<cfinvoke webservice = "#testCall#" method = "methodName" returnvariable="returnData" />

Then you could use the return data however you need. But a god start is to just dump it out and see what it looks like.

<cfdump var="#returnData#" />
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号