进行 Odata 保存但没有响应
只是想知道是否有办法在不返回响应的情况下保存数据。即我使用 objc odata sdk。如果我在 ipad 上创建一个员工实体,然后保存它,我不需要接收回保存的实体。所以实际上它是通过线路发送数据而不是无缘无故地返回数据。只是真正需要将其发送过去。
关于如何将保存设置推送到服务器而不必等待返回有什么想法吗?
提前致谢
Just wondering if there is anyway to save data across the line without the response coming back. i.e. Im using the objc odata sdk. If I create an employee entity on the ipad, than I save it, I dont need to receive the the saved entity back. So really its sending the data across the line than returning it for no reason. Only really need to send it across.
Any ideas on how I can set saves to be push to server and not have to wait for the return?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在最新的 CTP (http://blogs.msdn.com/b/astoriateam/archive/2011/10/13/announcing-wcf-data-services-oct-2011-ctp-for-net-4-and-silverlight-4 .aspx)您可以使用 Prefer 标头。客户端可以发送带有设置为 return-no-content 的 Prefer 标头的请求,服务器将发回一个空响应。标头的描述如下:https://datatracker.ietf。 org/doc/html/draft-snell-http-prefer-01。
In the latest CTP (http://blogs.msdn.com/b/astoriateam/archive/2011/10/13/announcing-wcf-data-services-oct-2011-ctp-for-net-4-and-silverlight-4.aspx) you can use the Prefer header. The client can send the request with Prefer header set to return-no-content and the server will send an empty response back. The header is described here: https://datatracker.ietf.org/doc/html/draft-snell-http-prefer-01.