无法在运行时在 ASP.NET MVC3 应用程序中加载 Microsoft.Http dll

发布于 2024-12-06 20:04:24 字数 556 浏览 1 评论 0原文

我创建了一个 WCF 服务并将其公开为 REST 服务。我正在尝试从 ASP.Net MVC3 应用程序使用此服务。

我添加了对 Microsoft.Http dll 的引用,以使用 HttpClient 并从 REST 服务的 POST 方法获取响应,如下面的代码所示 -

string uri = http://localhost:12958/Host1/RestService.svc/SubmitAdvisor;

using (HttpResponseMessage response = new HttpClient().Post(uri, HttpContentExtensions.CreateDataContract(obj)))

{

};

我在运行时收到以下错误 -

无法加载文件或程序集“Microsoft.Http,Version=1.0.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35”或其依赖项之一。系统找不到指定的文件。

我缺少什么?

I created a WCF service and exposed it as REST service. I am trying to consume this service from ASP.Net MVC3 application.

I added a reference to Microsoft.Http dll, to use HttpClient and get the response from a POST method of REST service, as in the code below -

string uri = http://localhost:12958/Host1/RestService.svc/SubmitAdvisor;

using (HttpResponseMessage response = new HttpClient().Post(uri, HttpContentExtensions.CreateDataContract(obj)))

{

};

I get the follwing error at runtime -

Could not load file or assembly 'Microsoft.Http, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

What is it I am missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拧巴小姐 2024-12-13 20:04:24

从此链接下载 http://aspnet.codeplex.com/releases/view/24644
之后,

Microsoft.Http.dll的位置是这样的

C:\Program Files (x86)\Microsoft WCF REST\WCF REST 入门工具包预览
2\组件

Download from this link http://aspnet.codeplex.com/releases/view/24644
After,

Microsoft.Http.dll's location is like this

C:\Program Files (x86)\Microsoft WCF REST\WCF REST Starter Kit Preview
2\Assemblies

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文