confusion!?

O

Oliver Block

Hello,

after reading several AJAX samples I wonder why one can found the following
lines in quite many of them:

....
else if (window.ActiveXObject) {
request = new ActiveXObject("Msxml2.XMLHTTP");
if(! request) {
request = new ActiveXObject("Microsoft.XMLHTTP");
}
}
....

Microsoft states that XmlHTTPRequest was added in MSXML2.

Best Regards,

Oliver
 
R

Randy Webb

Oliver Block said the following on 7/13/2006 9:20 AM:
Hello,

after reading several AJAX samples I wonder why one can found the following
lines in quite many of them:

....
else if (window.ActiveXObject) {
request = new ActiveXObject("Msxml2.XMLHTTP");
if(! request) {
request = new ActiveXObject("Microsoft.XMLHTTP");
}
}
....

Microsoft states that XmlHTTPRequest was added in MSXML2.

And if the browser doesn't have MSXML2?
 
B

bobzimuta

window.XMLHttpRequest will be available in IE 7

I usually use the following in a getRequest() function, which will
return null if no request object is available

if( window.XMLHttpRequest )
{
return new XMLHttpRequest();
}

var req_types = [ 'Msxml2.XMLHTTP', 'Microsoft.XMLHTTP' ];
for( var i=0; i<req_types.length; ++i )
{
try
{
var xmlrequest = new ActiveXObject( req_types[ i ] );
return xmlrequest;
}
catch( e ) { }
}

return null;
 
O

Oliver Block

Randy said:
Oliver Block said the following on 7/13/2006 9:20 AM:

And if the browser doesn't have MSXML2?

It does will not provide an XMLHTTPRequest-Object!?

-- Oliver
 
R

Richard Cornford

Rik said:
bobzimuta wrote:
if (window.ActiveXObject && !window.XMLHttpRequest) {
window.XMLHttpRequest = function() {
var msxmls = new Array(
'Msxml2.XMLHTTP.5.0',
'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0',
'Msxml2.XMLHTTP',
'Microsoft.XMLHTTP');
for (var i = 0; i < msxmls.length; i++) {
try {
return new ActiveXObject(msxmls);
} catch (e) {
}


You realise that if you do that when, say, Msxml2.XMLHTTP is the
version used your code will try three alternatives which will error
prior to returning the object, and it will do that on each and every
occasion the replacement - XMLHttpRequest - constructor is used.
}
return false;

Returning false form a function used as the operand of the - new -
operator does not result in boolean false being returned, instead the
Native ECMAScript object that is being constructed is returned here.
};
}

Which would mean in the rest of the code you can just use:

request = new XMLHTTPRequest;
if(!request){
//errorhandling, fallbacks etc.

Because when IE cannot create an XML HTTP request object (for example
when ActiveX is disabled) your - new XMLHTTPRequest - expression
evaluated as a Native ECMAScript object, and such an object
type-converts to true in and - if - expression, this "errorhandling,
fallbacks etc." code will _never_ be executed, and instead the code
will take the other branch and treat the Native ECMAScript object as an
XML HTTP request object, erroring out as soon as it tries to call a
method of the object.
} else {
//go on
}


function XMLHttpRequestFactory(){
var msxmls, comString, xmlObj = null, index;
if(
(window.XMLHttpRequest)&&
(xmlObj = (new XMLHttpRequest()))
){
/* Replace the factory with an version uses the available -
XMLHttpRequest - constructor:-
*/
XMLHttpRequestFactory = function(){
return new XMLHttpRequest();
};
}else if(window.ActiveXObject){
msxmls = [
'Msxml2.XMLHTTP.5.0',
'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0',
'Msxml2.XMLHTTP',
'Microsoft.XMLHTTP'
];
for(index = 0;index < msxmls.length;++index){
try{
if((xmlObj = new ActiveXObject(msxmls[index]))){
comString = msxmls[index];
/* Replace the factory with an version that directly used
the successful string, as determined by its being the
string that resulted in the creation of the XML HTTP
request object without any exceptions being thrown:-
*/
XMLHttpRequestFactory = function(){
return new ActiveXObject(comString);
};
msxmls = null;
break;
}
}catch(e){;}
}
if(!xmlObj){
/* Replace the factory with a dummy that just returns null as
there is no mechanism for creating the XML HTTP request
objects in this environment:-
*/
XMLHttpRequestFactory = function(){
return null;
};
}
}else{
/* Replace the factory with a dummy that just returns null as there
is no mechanism for creating the XML HTTP request objects in
this environment:-
*/
XMLHttpRequestFactory = function(){
return null;
};
}
return (function freeRefs(arg){
xmlObj = null; //guarantee that any ActiveX object is not stored in
//this closure.
return arg;
})(xmlObj);
}

Richard.
 
R

Randy Webb

Oliver Block said the following on 7/14/2006 8:51 AM:
It does will not provide an XMLHTTPRequest-Object!?

So, if the browser doesn't have the Msxml2.XMLHTTP ActiveX component but
it does have the Microsoft.XMLHTTP ActiveX component then it won't
provide the object? That second if section is a backstep of sorts to
support browsers that have one ActiveX component but not the other. And
there are more than 2 of them.
 
O

Oliver Block

Randy said:
Oliver Block said the following on 7/14/2006 8:51 AM:
That second if section is a backstep of sorts to
support browsers that have one ActiveX component but not the other. And
there are more than 2 of them.

I found out that IE 5 and IE 5.5 without any further MSXML just support the
second. But won't ActiveXObject throw an exception if the first one doesn't
return a request object?

Oliver
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top