Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: XMLHTTP and POST and keepalive timeouts

From: "Alex Krawarik [MSFT]" <alexkr@------.---------.--->
To: NULL
Date: 2/6/2007 10:19:00 AM


>> So:
>>
>> Is this a known problem?
>> Has anybody seen it before?
>> Any good ideas on how to avoid it? (current plan is to simply issue a GET 
>> if
>> the time since the last request was about 10 seconds - the GET will 
>> either
>> force the new connection or keep the old one alive).

Not known, no.

>> Oh yes - this is using the XMLHTTP which you get with IE 6, on either 
>> Win2K
>> or WinXP. Code is running in javascript on a normal html page. Server is
>> apache, but I don't think that's relevant. Code is this simple:

>>  var httpObj = new ActiveXObject('Microsoft.XMLHTTP');
>>  httpObj.open( "POST", url, false );
>>  httpObj.setRequestHeader( "Content-Type", "text/plain" );
>>  httpObj.send( postData );
>>

> Try MSXML2.XMLHTTP.3.0 and make sure the machine is fully patched.

In general using the version-dependent progIDs is smart, because at least 
then there is no ambuguity (for you, the developer) as to which version of 
MSXML you are targetting. In this case Microsoft.XMLHTTP really does map to 
MSXML2.XMLHTTP.3.0, so you're using the same object under the covers (for 
supported OS configs).

My first question would be...you are using XMLHTTP to send text/plain data? 
Why? Just use the much-lighter-weight-and-still-safe-for-scripting 
WinHTTP.WinHTTPRequest.5.1. If all you are doing is sending some text data 
over the wire, and you are not doing XML processing with the HTTP response, 
then don't use XMLHTTP!

Try this:

var httpObj = new ActiveXObject(winhttp.winhttprequest.5.1');
httpObj.open( "POST", url, false );
httpObj.setRequestHeader( "Content-Type", "text/plain" );
httpObj.send( postData );

Since WINHTTP uses a different HTTP stack in Windows altogether than what 
XMLHTTP uses, it may solve your problem too. 




transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent