MadeiraData / ClrHttpRequest

SQL Server CLR function for running REST methods over HTTP
MIT License
15 stars 16 forks source link

Support for SQL2008 #9

Open EitanBlumin opened 2 years ago

EitanBlumin commented 2 years ago

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 commented 2 years ago

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: