Hello All,
I have deployed my Web API on IIS 6 on Windows Server 2003. After deploying when I am trying to invoke methods from client side it is giving me following error
Could not load file or assembly 'System.Net.Http' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)
I am not sure why I am getting this error . Is this any framework issue ? Because I am NOT able to see System.Net.Http dll in my Bin directory after publishing the web api.
I have developed web api using 4.5 framework and on server it is 4.0 framework. However, I have changed this in web.config; still the issue same ??
How can get the web api working with 4.0 framework ?? Even I have tried by installing the previous web api package from nuget gallery; still the issue is s ...
Go to the complete details ...