我已阅读文章Simple Long Polling Example with JavaScript and jQuery。“长轮询 - 一种高效的服务器推送技术”段落解释说
长轮询技术将最佳情况的传统轮询与持久的远程服务器连接相结合。长期轮询本身是长期持有的 HTTP 请求的缩写。
如何实现使用长轮询的基于 Indy 的 HTTP 服务器?
我已阅读文章Simple Long Polling Example with JavaScript and jQuery。“长轮询 - 一种高效的服务器推送技术”段落解释说
长轮询技术将最佳情况的传统轮询与持久的远程服务器连接相结合。长期轮询本身是长期持有的 HTTP 请求的缩写。
如何实现使用长轮询的基于 Indy 的 HTTP 服务器?
这是一个独立的示例项目,使用 Indy 版本 10.5.9 和 Delphi 2009 进行了测试。
当应用程序运行时,导航到http://127.0.0.1:8080/
。然后服务器将提供一个 HTML 文档(在 OnCommandGet 处理程序中硬编码)。
该文档包含一个 div 元素,该元素将用作新数据的容器:
<body>
<div>Server time is: <div class="time"></div></div>'
</body>
然后,JavaScript 代码/getdata
循环向资源发送请求(函数poll()
)。
服务器以包含<div>
当前服务器时间的新元素的 HTML 片段进行响应。JavaScript 代码然后用新元素替换旧<div>
元素。
为了模拟服务器工作,该方法在返回数据之前等待一秒钟。
program IndyLongPollingDemo;
{$APPTYPE CONSOLE}
uses
IdHTTPServer, IdCustomHTTPServer, IdContext, IdSocketHandle, IdGlobal,
SysUtils, Classes;
type
TMyServer = class(TIdHTTPServer)
public
procedure InitComponent; override;
procedure DoCommandGet(AContext: TIdContext;
ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo); override;
end;
procedure Demo;
var
Server: TMyServer;
begin
Server := TMyServer.Create(nil);
try
try
Server.Active := True;
except
on E: Exception do
begin
WriteLn(E.ClassName + ' ' + E.Message);
end;
end;
WriteLn('Hit any key to terminate.');
ReadLn;
finally
Server.Free;
end;
end;
procedure TMyServer.InitComponent;
var
Binding: TIdSocketHandle;
begin
inherited;
Bindings.Clear;
Binding := Bindings.Add;
Binding.IP := '127.0.0.1';
Binding.Port := 8080;
KeepAlive := True;
end;
procedure TMyServer.DoCommandGet(AContext: TIdContext;
ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo);
begin
AResponseInfo.ContentType := 'text/html';
AResponseInfo.CharSet := 'UTF-8';
if ARequestInfo.Document = '/' then
begin
AResponseInfo.ContentText :=
'<html>' + #13#10
+ '<head>' + #13#10
+ '<title>Long Poll Example</title>' + #13#10
+ ' <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript" charset="utf-8"> ' +
#13#10
+ ' </script> ' + #13#10
+ ' <script type="text/javascript" charset="utf-8"> ' + #13#10
+ ' $(document).ready(function(){ ' + #13#10
+ ' (function poll(){' + #13#10
+ ' $.ajax({ url: "getdata", success: function(data){' + #13#10
+ ' $("div.time").replaceWith(data);' + #13#10
+ ' }, dataType: "html", complete: poll, timeout: 30000 });' + #13#10
+ ' })();' + #13#10
+ ' });' + #13#10
+ ' </script>' + #13#10
+ '</head>' + #13#10
+ '<body> ' + #13#10
+ ' <div>Server time is: <div class="time"></div></div>' + #13#10
+ '</body>' + #13#10
+ '</html>' + #13#10;
end
else
begin
Sleep(1000);
AResponseInfo.ContentText := '<div class="time">'+DateTimeToStr(Now)+'</div>';
end;
end;
begin
Demo;
end.