CyberSource on Azure

穿精又带淫゛_ 提交于 2020-01-23 18:20:09

问题


To do a request with CyberSource service you have to append .p12 certificate in request.

Classic way of appending(CyberSource SDK):

    req.ClientCertificates.Add(new X509Certificate2(@"D:\cert\cert.p12", "password1"));

This works perfectly on local or dedicated hosting.

The issue is we need to append .p12 certificate on Azure, which is impossible in classic way.

I've tried to put it in wwwroot/App_Data and load, but it doesn't work since, error from server we get is:

502 - Web server received an invalid response while acting as a gateway or proxy server. There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream content server, it received an invalid response from the content server.

I've read here, how to use cert on azure(changed p12 to pfx and uploaded to Azure): https://azure.microsoft.com/en-gb/blog/using-certificates-in-azure-websites-applications/

But I am not sure, this is correct way.


回答1:


I've resolved this by uploading certificate to Azure, and use it as a thumbprint. You have to use thumbprint in web.config to have it available on the website.

Read this: https://azure.microsoft.com/en-gb/blog/using-certificates-in-azure-websites-applications/



来源:https://stackoverflow.com/questions/32759181/cybersource-on-azure

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!