取消异步 Web 服务 (WCF) 请求不会取消 sql server 中的查询执行吗?
我在 ASP.NET 应用程序中使用 WCF Web 服务。 Web服务使用SqlDataAdapter的Fill方法从数据库获取数据集。我观察到,如果用户停止页面加载,它不会取消查询(存储过程)执行。
请告诉我是否有任何 Web 应用程序、Web 服务设置来停止不再需要的查询执行。还有从网页到 SQL Server 的请求/响应流的详细信息。
谢谢,
米林德
I am using WCF webservice in ASP.NET application. The webservice gets dataset from database using Fill method of SqlDataAdapter. I observed that it is not cancelling the query (stored procedure) execution if user stops page loading.
Please let me know if there is any settings for web application, webservice to stop the query execution which is no longer required. Also the details about the request/response flow from web page to sql server.
Thanks,
Milind
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Web 服务中的 Response.IsClientConnected 属性来检查是否仍然需要该请求。
You can use the
Response.IsClientConnected
property in the webservice to check if the request is still wanted.