我有一个SOAP WebServer的问题:如果我在服务器上有一个方法花了几秒钟给出一个结果,我不能从我的客户端应用程序“同时”(从线程调用)进行两次以上的调用(在Delphi中开发的 – 仅用于测试,最终的客户端应用程序将基于Web.我的意思是线程以某种方式被序列化,我不知道它是否应该发生这样或者我做错了什么,或者我是否需要进行某种设置.
Delphi XE2 Professional,Windows 7 64位
链接到我的压缩项目:http://1drv.ms/Nwu9nY
服务器方法:
function TServiciu.Test: string;
var t0, t1, Duration : Cardinal;
Guid : tguid;
RGuid : HRESULT;
received : boolean;
const MaxTime : Cardinal = 3000;
begin
Result := '';
RGuid := CreateGuid(Guid);
if RGuid = S_OK then
Result := GuidToString(Guid);
t0 := GetTickCount;
t1 := GetTickCount;
duration := t1 - t0;
while (Duration < Maxtime) do begin
//waiting for something to be written in a db by another program
//I am doing querys to the database for that result
if received then begin
Result := Result + '_RECEIVED_' + DateTimeToStr(Now);
Break;
end;
t1 := GetTickCount;
duration := t1 - t0;
if duration > Maxtime then begin //MaxTime allowed is exceded
Result := Result + '_NOTRECEIVED_' + DateTimeToStr(Now);
Break;
end;
end;
end;
客户端程序执行我的线程:
procedure TThreadTest.Execute;
begin
try
// OleCheck will raise an error if the call fails
OleCheck(CoInitializeEx(NIL, COINIT_MULTITHREADED or COINIT_SPEED_OVER_MEMORY));
try
s := 'Calling Method Test; Result=' +
Self.ThGetService.Test;
Synchronize(self.ScrieRezultat); //write result in memo
finally
CoUninitialize;
FreeAndNil(self.ThHttprio);
end;
except
// We failed, do something
end;
end;
最佳答案 我能够毫无困难地处理40个并发呼叫(实际上不止于此),但我正在使用不同的方法.我的服务是CGI可执行文件,因此IIS管理连接.发出SOAP请求时,IIS会调出myapp_cgi.exe的新实例来处理请求.我在40 TPS时达到顶峰,但我在4台服务器上实现了负载均衡,因此我可以实际完成160 TPS,如果有必要可以全天持续运行.