//since IE is the preferred browser for business and THATS where the money is.. //we will note Dojos IE implementation has a heavy reliance on Microsoft ActiveX SOAP control..how many times have we seen this iteration in dojo code? //in order of decreasing likelihood; this will change in time. dojo.hostenv._XMLHTTP_PROGIDS = ['Msxml2.XMLHTTP', 'Microsoft.XMLHTTP', 'Msxml2.XMLHTTP.4.0']; dojo.hostenv.getXmlhttpObject = function(){ var http = null; var last_e = null; try{ http = new XMLHttpRequest(); }catch(e){} if(!http){ for(var i=0; i<3; ++i){ var progid = dojo.hostenv._XMLHTTP_PROGIDS[i]; try{ http = new ActiveXObject(progid);
But Did you know that v4 is being EOLed??..take a look at http://msdn2.microsoft.com/en-us/library/ms762314(VS.85).aspx and in fact there a security patch level2 for XMLHTTP.4.0. available located at http://download.microsoft.com/download/9/6/5/9657c01e-107f-409c-baac-7d24956 1629c/MSXML4SP_RelNote.htm where The latest is v6 http://www.microsoft.com/downloads/details.aspx?FamilyID=993C0BCF-3BCF-4009- BE21-27E85E1857B1&displaylang=en which now has a.. XML 1.0 (DOM & SAX2 APIs) a.. XML Schema (XSD) 1.0 a.. XPath 1.0 a.. XSLT 1.0 personally I believe incorporating XSLT capability will propel this control well beyond the v4 control Anyone? Martin-- ----- Original Message ----- From: "Al Sutton" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <user@struts.apache.org> Sent: Saturday, February 23, 2008 3:29 AM Subject: Re: [Friday] Re: [S2] OGNL Syntax Question > Go guerilla my friend and just do it, go to the business group paying for > the development, and say "If I install browser X as part of the system look > how much prettier and easier things become". > > Once you've sold it to the business group the techies will have to > follow.... :) > > ----- Original Message ----- > From: "Dave Newton" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" <user@struts.apache.org> > Sent: Saturday, February 23, 2008 1:06 AM > Subject: Re: [Friday] Re: [S2] OGNL Syntax Question > > > > --- [EMAIL PROTECTED] wrote: > >> And he is buddying up with Microsoft! > > > > I've offered to deploy a better browser on my client's 3-4k tablets; so > > far > > they've declined. > > > > Dave > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]