Coldfusion - Firstdata Global Gateway - 需要入门帮助
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是有关使用 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.
您将需要查看 cfobject 和 cfinvoke。我假设您有 WSDL url,所以我要做的第一件事就是尝试这样:
这应该向您显示可用的方法。然后您可以使用 cfinvoke 调用这些消息:
然后您可以根据需要使用返回数据。但最好的开始就是把它扔掉,看看它是什么样子。
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:
This should show you the available methods. Then you would call those message using cfinvoke:
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.