Coldfusion - Firstdata Global Gateway - 需要入门帮助

发布于 2024-11-30 23:52:53 字数 325 浏览 0 评论 0原文

我在 Windows 7 64 位上使用 Coldfusion 9,0,0,251028。

我正在尝试更改网站的信用卡处理器。我已经阅读了 Web Service API v 4.0 的集成指南,但它并没有告诉我如何与 Coldfusion 集成以构建包含在 SOAP 中并发送的 xml。

我与 Firstdata 的二级支持人员进行了交谈,并被告知除了排除错误代码之外,他们无法帮助进行编程。他们还告诉我他们没有关于 Web 服务 API 的论坛。

我将使用 Coldfusion 中的哪种标签来启动此交易?有谁知道除了 Web 服务 api 集成指南之外我可以在哪里找到示例或说明?

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 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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑,眼淚并存 2024-12-07 23:52:53

以下是有关使用 ColdFusion 执行 SOAP 的一些推荐阅读内容:

使用 ColdFusion 和 CFHTTP 发出 SOAP Web 服务请求

SOAP 请求函数

对 SOAP 请求和响应进行故障排除

我一直认为 SOAP很痛苦,但如果这是唯一的出路,上面的三个链接应该可以帮助您到达那里。

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.

雨夜星沙 2024-12-07 23:52:53

您将需要查看 cfobject 和 cfinvoke。我假设您有 WSDL url,所以我要做的第一件事就是尝试这样:

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

这应该向您显示可用的方法。然后您可以使用 cfinvoke 调用这些消息:

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

然后您可以根据需要使用返回数据。但最好的开始就是把它扔掉,看看它是什么样子。

<cfdump var="#returnData#" />

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#" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文