CyberSource on Azure

2019-06-05 04:10发布

问题:

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/