使用 HttpWebRequest 将实体添加到 WCF 数据服务

发布于 2024-12-10 18:19:03 字数 275 浏览 0 评论 0原文

假设我有一个工作的 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 技术交流群。

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

发布评论

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

评论(1

杯别 2024-12-17 18:19:03

您可以做的是使用 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

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