Hi everyone.
I am managing an application that uploads CSV files through a POST parameter.
For some users ( 3% ), I got on my IIS server a 500 + 64 error.
That means:
- ERROR_NETNAME_DELETED
-
- 64 (0x40)
-
The specified network name is no longer available.
Moreover the timers for that connection get very big values ( average of 3minutes ).
To troubleshoot that:
My first supposition was that
AQuery tries to send
CSV files across poor network connections, it get stuck on a timeout, then it close the
HTTP
request, but the server (that in the meanwhile got the data) tries to
reply and it finds out that the client closed the connection
(The specified network name is no longer available).
To simulate that I sent
CSV file across a good connection but imposing a timeout of 1 to the
AjaxCallback<JSONObject>,
but I obtained that the AQuery gets a -101 code. While for the server
everything goes fine and it replies with 200 (even though the AQuery
already closed the connection).
Now I am very puzzled.
I do not know what to do and I am losing data because of that.
Does anyone have a solution, or at least a clue about that?
Thanks a lot.
C.