在ASP.NET MVC应用程序(.NET 4.7)中,我在HttpResponseMessage
上使用扩展方法。在.NET Standard 2.0项目中创建此方法。在调试和使用IIS Express时,它工作正常。
但是在发布到服务器时,它返回“找不到方法”错误。在服务器(Windows Server 2008)上,安装了所有必需的框架。
当我在调用扩展方法的方法中使用try / catch时,错误变得很明显。
在开发中,我希望它可以在服务器上运行。我是否还缺少其他任何.NET框架?还是有其他人可以解决?
HttpResponseMessage response = client.GetAsync(UserManAPI).Result;
if (response.IsSuccessStatusCode)
{
apiResponse = response.Content.ReadAsStringAsync().Result;
}
else
response.ThrowReynaersException();
public static void ThrowReynaersException(this HttpResponseMessage response)
{
if (response.StatusCode == HttpStatusCode.OK)
{
using (var dataStream =
response.Content.ReadAsStreamAsync().Result)
{
if (dataStream != null)
{
var jsonResponse = JsonValue.Load(dataStream);
if (jsonResponse != null)
{
var rex =
JsonConvert.DeserializeObject<ReynaersException(jsonResponse,
new ReynaersExceptionConverter());
if (rex != null) throw rex;
var ex = JsonConvert.DeserializeObject<Exception>(jsonResponse, new ExceptionConverter());
if (ex != null) throw ex.ToReynaersException();
throw new
ReynaersException(ErrorResourcesKeys.DefaultMessage);
}
}
}
}
}
谢谢!
答案 0 :(得分:2)
在web.config中尝试此操作,或使用Nuget软件包重新安装“ System.Net.Http”
<configuration>
<system.web>
<compilation>
<assemblies>
<add assembly="System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</assemblies>
</compilation>
</system.web>
</configuration>