1

現在、サーバー 2000 で Linkpoint ゲートウェイを実行しています。サーバー 2008 x64 に移行しようとしています。

これまでのところ、これらのファイルがあります。LpiCom_6_0.dll
LinkPointTransaction.dll
Interop.LPICOM_6_OLib.dll

OpenSSLをインストールしました。

何をすべきかについて、段階的な手順を手伝ってくれる人はいますか? ありがとう

4

3 に答える 3

1

サーバーのアップグレードを調査する際に、これについてFirstDataにメールを送信しました。これは彼らの反応でした:

First DataGlobalGatewayに関する最近のお問い合わせありがとうございます。WebサービスAPIは、IIS 7で実行されている64ビットマシン用の現在のソリューションです。どのdllファイル(Linkpointtransaction.dll、LPICOM_6_.dll)も64ビットサーバーで動作するように更新されないためです。WebサービスAPIは、クライアント証明書をインストールし、SOAPリクエストを介してトランザクションを送信する必要があります。WebサービスAPIの詳細については、http://www.firstdata.com/downloads/marketing-merchant/FDGG-Web-Service-API-v4.0.pdfを参照してください。

さらに詳しい説明や質問が必要な場合は、以下の電話番号からサポートデスクにお問い合わせください。APIサポートデスクの営業時間は、月曜から金曜の午前9時から午後6時までです。

これは、将来同様の情報を探している他の人に役立つはずです。

于 2011-08-15T15:27:10.547 に答える
1

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

リンクポイントに必要な 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 フォルダーに配置します。

于 2011-03-30T17:58:40.267 に答える
0

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.

于 2012-02-02T20:12:28.927 に答える