ClrHttpRequest icon indicating copy to clipboard operation
ClrHttpRequest copied to clipboard

Support for SQL2008

Open EitanBlumin opened this issue 3 years ago • 1 comments

This CLR assembly currently doesn't work on SQL 2008 R2 and older.

In order to make this CLR assembly compatible with that, it must be re-written to be compatible with .NET Framework 3.5 SP1.

EitanBlumin avatar Feb 13 '22 13:02 EitanBlumin

The main issue is the HttpWebRequest and HttpWebResponse classes, which don't seem to be supported in .NET 3.5

Their older alternatives are WebRequest and WebResponse.

Some relevant resources for reference:

  • https://docs.microsoft.com/en-us/dotnet/framework/network-programming/how-to-send-data-using-the-webrequest-class?redirectedfrom=MSDN
  • https://docs.microsoft.com/en-us/dotnet/api/system.net.webresponse.getresponsestream

EitanBlumin avatar Feb 13 '22 13:02 EitanBlumin