Re: Reliability problem
Elise D <[email protected]> Thu, 31 Oct 2002 07:28:19 -0800
| Newsgroups | gmane.comp.windows.devel.soap.general |
|---|---|
| Message-ID | <SOAP%[email protected]> |
i found the solution on the java side. i post it here, in case it could
help someone else :
you must make a second just after the first one
========================================================
CODE :
result = conn.post(request);
long end = System.currentTimeMillis();
if (result.equals("") || result.equals("Exception "))
{
result = result + " : Failed -> Retry";
Alog.logAction(result
+ " ("
+ (end - start)
+ "ms) );
start = System.currentTimeMillis();
result = conn.post(request);
end = System.currentTimeMillis();
}
====================================================
You can read messages from the SOAP archive, unsubscribe from SOAP, or subscribe to other
DevelopMentor lists at http://discuss.develop.com.