Http response didn't correspond to the request url after connection reset
Hi,
I have develpoed a webgis site using applet. You can see the map from :
http://r.mapbased.com/wc/map.htm?sn=rwcb&_l=zh_CN
(Sorry for no English version still)
The map applet will send http requests for getting features when need.(after load applet, zoom,pan etc).It do use multi-thread,but each thread using an urlconnection.
In general, Http request and response should be:
Req 1-->Resp 1
Req 2-->Resp 2
Req 3-->Resp 3
but under pool netwok condition (I guess might after a connection reset),I got the following result:
Req 1-->Resp 1
-Connection reset
Req 2 -->Resp 3 (maybe get resp 1 again, I'm not sure)
Req 3 -->Resp 4
I found this error under WindowXp sp2,JRE 1.6 . which have a very slow net connection to server.
my applet works well with MS JVM ,support(jre1.1)
Best regards,
Baily

