第一个数据网关问题

发布于 2024-10-28 05:48:35 字数 219 浏览 2 评论 0原文

我们目前在服务器 2000 上运行 Linkpoint 网关。我们正在尝试过渡到服务器 2008 x64。

到目前为止我们已经有了这些文件。 LpiCom_6_0.dll
LinkPointTransaction.dll
Interop.LPICOM_6_OLib.dll

我们已经安装了 OpenSSL。

任何人都可以帮助我们一步一步地做什么? 谢谢

We are currently running Linkpoint gateway on a server 2000. We are trying to make the transition to a server 2008 x64.

We have these files so far.
LpiCom_6_0.dll
LinkPointTransaction.dll
Interop.LPICOM_6_OLib.dll

We have installed OpenSSL.

Can anyone help us with a step by step procedure on what to do?
Thanks

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

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

发布评论

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

评论(3

七度光 2024-11-04 05:48:35

=================================================== =================

链接点所需的 DLL:

LinkPointTransaction.dll 
Interop.LPICOM_6_0Lib.dll 
LpiCom_6_0.dll 

============================== =========================================

步骤

1 - IIS 7.0>应用程序池>设置应用程序池默认>将 32 位启用为 TRUE

步骤 2 - 安装 OPENSSL

步骤 3 - 从服务器中删除 lpssl.dll(如有必要)。

步骤 4 - 注册 LpiCom_6_0.dll (regsvr32)

CMD as administrator

c:\windows\syswow64
regsvr c:\windows\syswow64\LpiCom_6_0.dll

步骤 6 - 将 LinkPointTransaction.dll 和 Interop.LPICOM_6_0Lib.dll 放入应用程序打开的 ssl bin 文件夹中。

===================================================================

Needed DLL's for linkpoint:

LinkPointTransaction.dll 
Interop.LPICOM_6_0Lib.dll 
LpiCom_6_0.dll 

===================================================================

STEPS TO FOLLOW

Step 1 - IIS 7.0> Application Pools > set Application Pool Default > Enable 32 Bit to TRUE

Step 2 - Install OPENSSL

Step 3 - Remove lpssl.dll from the server, if necessary.

Step 4 - Register LpiCom_6_0.dll (regsvr32)

CMD as administrator

c:\windows\syswow64
regsvr c:\windows\syswow64\LpiCom_6_0.dll

Step 6 - Put LinkPointTransaction.dll and Interop.LPICOM_6_0Lib.dll in the open ssl bin folder of application.

原野 2024-11-04 05:48:35

我通过电子邮件向 First Data 发送了有关此问题的电子邮件,以研究升级我们的服务器。这是他们的回应:

感谢您最近询问有关 First Data Global Gateway 的问题。 Webservice API 是我们当前针对在 IIS 7 上运行的 64 位计算机的解决方案,因为不会更新任何 dll 文件(Linkpointtransaction.dll、LPICOM_6_.dll)以与 64 位服务器配合使用。 Web 服务 API 将需要安装客户端证书并通过 SOAP 请求发送事务。有关 Webservice API 的更多信息,请访问 http ://www.firstdata.com/downloads/marketing-merchant/FDGG-Web-Service-API-v4.0.pdf

如果您需要进一步说明或疑问,请通过下面的电话号码联系我们的支持台。请注意,API 支持服务台工作时间为美国东部标准时间周一至周五上午 9:00 至下午 6:00。

这应该有助于其他人将来寻找类似信息。

I emailed First Data about this in researching upgrading our servers. This was their repsonse:

Thank you for your recent inquiry regarding First Data Global Gateway. The Webservice API is our current solution for 64 bit machines running on IIS 7 as none of the dll files (Linkpointtransaction.dll, LPICOM_6_.dll) will be updated to work with the 64bit server. Webservice API will require to install the client certificate and send the transaction via SOAP request. Additional information on Webservice API is found at http://www.firstdata.com/downloads/marketing-merchant/FDGG-Web-Service-API-v4.0.pdf.

If you need further clarifications or questions, please contact our support desk via phone number below. Please be advised the API support desk hours is from 9:00AM to 6:00PM EST Mon-Fri.

This should help others looking for similar information in the future.

枯寂 2024-11-04 05:48:35

我发现我必须将 lpssl.dll 添加到路径中。为此,您有以下两个选项之一:

  1. 将 lpssl.dll 复制到路径中已有的文件夹中。您可以通过在命令提示符处键入“echo %PATH%”来查看路径中的文件夹。

或者

  1. 将 lpssl.dll 所在的文件夹添加到路径中。为此,右键单击“我的电脑”,然后单击“属性”,然后单击“高级系统设置”,然后在“高级”选项卡上单击“环境变量”,然后在下方的“系统变量”框中找到“路径”变量并双击它。如果您的 lpssl.dll 位于 c:\myprojects\coolwebsite\bin\lpssl.dll,那么您需要将其附加到当前路径字符串的末尾(首先添加分号以将其与之前的路径分隔开:;c :\myprojects\coolwebsite\bin

我在我的博客 http://adventuresindotnet.blogspot.com/2012/02/linkpointtransactiondll.html

您可能还需要采取其他步骤,但希望这会有所帮助。

I found that I had to add lpssl.dll to the path. To do this you have one of two options:

  1. Copy lpssl.dll to a folder that is already in the path. You can see what folders are in the path by typing 'echo %PATH%' at a command prompt.

OR

  1. Add the folder that lpssl.dll is in to the path. To do this, right-click on My Computer, then Properties, then Advanced System Settings, then on the Advanced tab click 'Environment Variables', then in the lower box with 'System Variables' find the 'Path' variable and double-click it. If your lpssl.dll is at c:\myprojects\coolwebsite\bin\lpssl.dll, then you want to append this to the end of the current path string (starting with adding a semicolon to separate it from the previous paths: ;c:\myprojects\coolwebsite\bin

I've written more about my troubles with the LinkPoint pieces on my blog at http://adventuresindotnet.blogspot.com/2012/02/linkpointtransactiondll.html

There are probably other steps you have to take, but hopefully this will help somewhat.

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