使用 HttpWebRequest 将实体添加到 WCF 数据服务
假设我有一个工作的 WCF 数据服务,我如何使用 HttpWebRequest 类将新实体添加到公开的表中?
HttpWebRequest request = WebRequest.Create(new Uri("https://www.site.com/Website/Service1.svc/Users", UriKind.Absolute)) as HttpWebRequest;
request.Method = "POST";
..... ?
谢谢
Assuming i have a working WCF Data Service, how could i use the HttpWebRequest class to add a new entity to the exposed table ?
HttpWebRequest request = WebRequest.Create(new Uri("https://www.site.com/Website/Service1.svc/Users", UriKind.Absolute)) as HttpWebRequest;
request.Method = "POST";
..... ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以做的是使用 Silverlight WCF 数据服务客户端库并尝试访问该服务。
然后,您可以使用 Fiddler 查看正在发送的请求,并使用 HttpWebRequest 手动创建此类请求
You can do is to using Silverlight WCF Data Services client library and try to access the service.
You can then use Fiddler to see the request being sent and manually craft such requests using HttpWebRequest