|
|
Windows Server 2003 r2 64 bit and msxml
Is anyone aware of any reason why the following won't work on a
Windows Server 2003 r2 64 bit Edition? I am simply calling the following
snippet,
and trying to execute it in a browser window there, just as I do any
other version of Windows:
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[i]);
} catch (e) {
}
}
return null;
};
//Ike
|
|
0
|
|
|
|
Reply
|
Ike
|
6/21/2006 12:06:32 PM |
|
Ike wrote:
> Is anyone aware of any reason why the following won't work on a
> Windows Server 2003 r2 64 bit Edition? I am simply calling the following
> snippet,
> and trying to execute it in a browser window there, just as I do any
> other version of Windows:
Which browser is that on Windows Server 2003, is that IE 6? IE 6 usually
comes with MSXML 3 so you should be able to instantiate
Msxml2.XMLHTTP.3.0. I have however never worked on 64 bit systems.
MSDN claims that the new MSXML 6 version has a 64 bit redistributable
<http://www.microsoft.com/downloads/details.aspx?familyid=993c0bcf-3bcf-4009-be21-27e85e1857b1&displaylang=en>
so you might want to install MSXML 6 and check whether adding
Msxm2.XMLHTTP.6.0
to the loop improves things.
--
Martin Honnen
http://JavaScript.FAQTs.com/
|
|
0
|
|
|
|
Reply
|
Martin
|
6/21/2006 12:37:15 PM
|
|
Ike wrote in news:cDamg.9136$o4.4758@newsread2.news.pas.earthlink.net in
comp.lang.javascript:
> Is anyone aware of any reason why the following won't work on a
> Windows Server 2003 r2 64 bit Edition? I am simply calling the following
> snippet,
> and trying to execute it in a browser window there, just as I do any
> other version of Windows:
>
> if (window.ActiveXObject
MS have upped the default security settings for Server 2003, this
probably includes disabling ActiveX support.
http://www.microsoft.com/downloads/details.aspx?FamilyID=d41b036c-e2e1-
4960-99bb-9757f7e9e31b&DisplayLang=en
Rob.
--
http://www.victim-prime.dsl.pipex.com/
|
|
0
|
|
|
|
Reply
|
Rob
|
6/21/2006 8:29:57 PM
|
|
|
2 Replies
300 Views
(page loaded in 0.057 seconds)
Similiar Articles: Sun v40z + 64bit Windows - comp.unix.solarisI do not have a V40z but have 64-bit Windows 2003 Enterprise Server ... if driver/ software issues preclude 64-bit, Server 2003 Enterprise and the earlier 2008 (not R2 ... LSI Logic 20160 - does it work with Windows Server 2003? - comp ...On the LSI website I found no drivers for Windows Server 2003 or any other modern ... SCSI controller driver, Windows Server 2008 R2 64-bit Windows Server... first Windows ... can't start matlab -win32 in windows 2008 r2 - comp.soft-sys ...... comp.unix.solaris Like Windows 2003 64bit, or WIndows 2008 64bit... ... bit, Server 2003 Enterprise and the earlier 2008 (not R2 ... problem between windows 7, 64 bit and ... Where can I get access to a beta Sharepoint 2010 server - comp ...Unfortunately I do not have a spare 64 bit capable ... 320 gig disk space 54 gig partition for Windows 2008 Server R2 ... Will Access 2010 run a 2003 program? - comp ... matlab hangs when starting in cygwin on 64bit windows - comp.soft ...... sshd service set up in cygwin on a 64bit windows server 2003. I ... can't start matlab -win32 in windows 2008 r2 - comp.soft-sys ... MikTeX Windows 7 64-bit, can't download ... java in the database (10gR2 & 11gR2) - comp.databases.oracle ...... are evaluating "jc" is running 11.2.0.1.0 on Windows Server 2003. ... > > > This would not likely have affected 10g R2, but ... Either upgrade your processor to a 64-bit capable one ... Re: Running with V8 and V9 - Please help me - comp.soft-sys.sas ...-Did you change for a 64 bits host ? -Did you change ... I am running Pervasive 2000i SP4 on a Windows 2003 Server. ... reg - comp.soft-sys.sas Hi all, I want to store R2 ... input & output in assembly - comp.lang.asm.x86>4 Gibibytes seems tiny now that 64-bit chips are >coming down from Mount Server ... As I understand, 64-bit Windows will use this ... There was even a third edition in 2003 ... Quick Question re VMware - comp.os.cpmNow I plan to download Server, the free version. ... operating systems running under VMware 3.1 on a Windows ... an Intel 32-bit boot sequence and an Intel 64-bit boot ... [comp.publish.cdrom] CD-Recordable FAQ, Part 1/4 - comp.publish ...Archive-name: cdrom/cd-recordable/part1 Posting-Frequency: monthly Last-modified: 2008/10/09 Version: 2.71 Send corrections and updates to And... Windows Server 2003 r2 64 bit and msxml - JavaScript / Ajax / DHTMLWindows Server 2003 r2 64 bit and msxml. JavaScript / Ajax / DHTML Forums on Bytes. Why there’s no 64-bit Silverlight from Microsoft… yet | Ars ...... Windows XP and Windows Server 2003 in April 2005. A 64-bit ... don't support 64-bit. Silverlight ... Making 64-bit the default. Along with Windows 7, Windows Server 2008 R2 hit RTM ... 7/22/2012 5:48:06 PM
|
|
|
|
|
|
|
|
|