NopCommerce's Payment.Authorize.net free plugin is TLS 1.2 supported?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 years ago
In the directory nopCommerce_3.70_Source\Presentation\Nop.Web\Global.asax.cs

You need to edit and rebuild using Visual Studio
5 years ago
Hi Yidna, thank you for the quick response. Maybe I should have given more information. The website was initially installed on an Azure environment. I downloaded the web files into a project on my local machine. It compiles and runs locally. There is no Global.asax.cs file. There is a Global.asax I tried adding code below to this files (Global.asax) but it still does not work. I still get the same error.  tried adding Global.asax.cs  and it VS2015 requested that I add an App_Data directory. I tried that and added ServicePoint code below but it still did not work.Any help would be appreciated! :)


<%@ Import Namespace="System.Net" %>


<script runat="server">


    void Application_Start(object sender, EventArgs e)
    {

       ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;

    }


</script>
5 years ago
So I assume it a customised version of 3.7 ?

I dont know - what about download the full 3.7 source code version change the file Global.asax.cs as above - build it and copy it into your exisitng directory ?
5 years ago
Cool I'll try that.

Thanks
5 years ago
Ok I tried it and everything worked but now I get this error

Object reference not set to an instance of an object.

Any suggestions?

Thanks
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.