Issues running the .NET v2.0.50727 x64 on Windows XP Pro x64

G

Guest

I have suucessfully been able to configure and execute 32bit 1.1 and 2.0
applications on my develpopment box however once I try to run 2.0 x64 I am
getting a DNS error on localhost and I have not been able to resolve this
issue and I was hoping someone could point me in the correct direction.

The support article I have been referencing is
http://support.microsoft.com/default.aspx?scid=kb;en-us;894435

To recap my steps here is what I have done:

cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET
W3SVC/AppPools/Enable32bitAppOnWin64 0
(result) Enable32bitAppOnWin64 : (BOOLEAN) False

%SYSTEMROOT%\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe –i
(result) Finished installing ASP.NET (2.0.50727)

aspnet_regiis.exe -s W3SVC/1/ROOT/examples – executed from:
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727
(result) Start registering ASP.NET scriptmap (2.0.50727) recursively at
W3SVC/1/ROOT/examples.

Finished registering ASP.NET scriptmap (2.0.50727) recursively at
W3SVC/1/ROOT/examples.

Now I get two event log entries which are:

1. ISAPI Filter 'C:\Program Files (x86)\Common Files\Microsoft Shared\Web
Server Extensions\50\bin\fpexedll.dll' could not be loaded due to a
configuration problem. The current configuration only supports loading images
built for a AMD64 processor architecture. The data field contains the error
number.

2. Could not load all ISAPI filters for site/service. Therefore startup
aborted.

Thoughts, ideas, or suggestions?
 
K

Kevin Yu [MSFT]

Hi,

Since 64bit is not supported here in newsgroup, I suggest you try to
contact Microsoft PSS on this issue. You can get the contact information
from the following link:

http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone

Kevin Yu
Microsoft Online Community Support

============================================================================
==========================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
============================================================================
==========================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
B

Ben Voigt

Steven said:
I have suucessfully been able to configure and execute 32bit 1.1 and 2.0
applications on my develpopment box however once I try to run 2.0 x64 I am
getting a DNS error on localhost and I have not been able to resolve this
issue and I was hoping someone could point me in the correct direction.

The support article I have been referencing is
http://support.microsoft.com/default.aspx?scid=kb;en-us;894435

To recap my steps here is what I have done:

cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET
W3SVC/AppPools/Enable32bitAppOnWin64 0
(result) Enable32bitAppOnWin64 : (BOOLEAN) False

%SYSTEMROOT%\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -i
(result) Finished installing ASP.NET (2.0.50727)

aspnet_regiis.exe -s W3SVC/1/ROOT/examples - executed from:
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727
(result) Start registering ASP.NET scriptmap (2.0.50727) recursively at
W3SVC/1/ROOT/examples.

Finished registering ASP.NET scriptmap (2.0.50727) recursively at
W3SVC/1/ROOT/examples.

Now I get two event log entries which are:

1. ISAPI Filter 'C:\Program Files (x86)\Common Files\Microsoft Shared\Web
Server Extensions\50\bin\fpexedll.dll' could not be loaded due to a
configuration problem. The current configuration only supports loading
images
built for a AMD64 processor architecture. The data field contains the
error
number.

Is this dll (FrontPage I guess) an unmanaged 32-bit library? Is there a
64-bit version? What happens if you remove it from the list of ISAPI
filters?
 
Top