通过 .NET 4 Client Profile 使用 REST 服务
使用 .NET 4 客户端配置文件从 .NET 客户端应用程序使用 RESTful 服务的最简单/最佳方法是什么?我发现的一切最终都推动我走向完整的框架:
- WCF REST Starter Kit。 HttpClient 类需要完整的框架。
- WebChannelFactory>>位于 System.ServiceModel.Web 中,现已从客户端配置文件中删除。
- WCF 数据服务客户端库位于 System.Data.Services.Client 中(也不位于客户端配置文件中)
System.Net 中的 WebClient 是我唯一的选择吗?
What's the easiest/best way to consume a RESTful service from a .NET client application using the .NET 4 Client Profile? Everything I have found ends up pushing me towards the full framework:
- WCF REST Starter Kit. HttpClient class requires full framework.
- WebChannelFactory<> is in System.ServiceModel.Web, now removed from the Client Profile.
- WCF Data Services Client Library is in System.Data.Services.Client (not in the Client profile either)
Is WebClient in System.Net my only option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Hammock for REST (http://hammock.codeplex.com),它支持客户端配置文件。
You can use Hammock for REST (http://hammock.codeplex.com), it supports the Client Profile.