|
 |
access_asp thread: IIS error 0x8007007E
Message #1 by "canny" <canny_pzj@2...> on Mon, 12 Nov 2001 04:22:13
|
|
After installing IIS WEB Sever,for the first time I enter my IP adress in
IE,but it tell me that error 0x8007007e.
I find the answer in microsoft.com :
"The line and page that are specified vary from the preceding sample error
message. However, the line that is noted in the error message will likely
have the following syntax:
Set objHostName = Server.CreateObject("HostName.ConvertHostName") "
it said i was trying to use the Server.CreateObject method to instantiate
an object that was not registered.
But ,the question is the asp file is localstart.asp(included in
wwwroot),this file must be correct. And in the past , I can use it (IIS)
normally ,without any problem. Localstart.asp can display properly.
What should I do now?
Message #2 by "Ken Schaefer" <ken@a...> on Mon, 12 Nov 2001 15:45:08 +1100
|
|
a) What does this have to do with Access? Please post this on the
appropriate list, eg ASPDebug
b) What is the line number the error is occuring on, and what is the code on
that line?
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "canny" <canny_pzj@2...>
Subject: [access_asp] IIS error 0x8007007E
: After installing IIS WEB Sever,for the first time I enter my IP adress in
: IE,but it tell me that error 0x8007007e.
: I find the answer in microsoft.com :
: "The line and page that are specified vary from the preceding sample error
: message. However, the line that is noted in the error message will likely
: have the following syntax:
: Set objHostName = Server.CreateObject("HostName.ConvertHostName") "
: it said i was trying to use the Server.CreateObject method to instantiate
: an object that was not registered.
:
: But ,the question is the asp file is localstart.asp(included in
: wwwroot),this file must be correct. And in the past , I can use it (IIS)
: normally ,without any problem. Localstart.asp can display properly.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message #3 by "canny" <canny_pzj@2...> on Mon, 12 Nov 2001 06:36:19
|
|
In my IE Browser,it display that:
" Technical Information (for support personnel)
Error Type:
(0x8007007E)
/localstart.asp, line 26
Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
Page:
GET /localstart.asp "
The asp file is Localstart.asp(a file in Inetpub\wwwroot)
On line 26:" Set oFS=CreateObject("Scripting.FileSystemObject") "
But it worked normally in my last Operating System ( For some reason,it
crashed,and I reinstall a new OS.)So,I guess it should caused by some
settings,not the asp file itself.
In microsoft, they gave a solution:
*********************************************************************
RESOLUTION
To resolve the error, use Regsvr32.exe to register the object that you
want to instantiate from your Active Server Pages.
For example, to resolve the sample error that is shown in the "Symptoms"
section, type the following commands at a command prompt to register an
object called Hostname.dll that is located in the C:\ils folder on the
local system:
c:
cd \ils
c:\winnt\system32\regsvr32.exe c:\ils\hostname.dll
*********************************************************************
I cannot find the folder ils or the file hostname.dll
> a) What does this have to do with Access? Please post this on the
> appropriate list, eg ASPDebug
>
> b) What is the line number the error is occuring on, and what is the
code on
> that line?
>
> Cheers
> Ken
>
Message #4 by "Ken Schaefer" <ken@a...> on Mon, 12 Nov 2001 19:29:55 +1100
|
|
It is possible that the File System Object is not registered, in which case
you need to follow the instructions on the Microsoft website (but you need
to use the folder and file names on *your* system - their instructions were
just an example)
Do you have Norton Antivirus installed? If so, you may need to turn "script
blocking" off.
Next, try changing CreateObject to Server.CreateObject (though it shouldn't
make any difference)
Lastly, please post your responses to an appropriate list - this has nothing
to do with Access & ASP. Please try posting this to the ASPFreeForAll list,
or the ASPCrash list: see www.aspfriends.com for the necessary list
addresses.
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "canny" <canny_pzj@2...>
Subject: [access_asp] Re: IIS error 0x8007007E
: In my IE Browser,it display that:
: " Technical Information (for support personnel)
:
: Error Type:
: (0x8007007E)
: /localstart.asp, line 26
:
:
: Browser Type:
: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
:
: Page:
: GET /localstart.asp "
: The asp file is Localstart.asp(a file in Inetpub\wwwroot)
: On line 26:" Set oFS=CreateObject("Scripting.FileSystemObject") "
:
: But it worked normally in my last Operating System ( For some reason,it
: crashed,and I reinstall a new OS.)So,I guess it should caused by some
: settings,not the asp file itself.
:
: In microsoft, they gave a solution:
: *********************************************************************
: RESOLUTION
: To resolve the error, use Regsvr32.exe to register the object that you
: want to instantiate from your Active Server Pages.
:
: For example, to resolve the sample error that is shown in the "Symptoms"
: section, type the following commands at a command prompt to register an
: object called Hostname.dll that is located in the C:\ils folder on the
: local system:
:
: c:
: cd \ils
: c:\winnt\system32\regsvr32.exe c:\ils\hostname.dll
: *********************************************************************
: I cannot find the folder ils or the file hostname.dll
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message #5 by patrick.frenette@s... on Fri, 16 Nov 2001 12:39:55
|
|
Create a new page and request it. The start page is sometimes not working
under windows 2k. I think it is only because of permissions on the server.
Just work over it, anyway you wont keep those pages right???
Patrick Frenette
Research Center for Geomatics
> After installing IIS WEB Sever,for the first time I enter my IP adress
in
> IE,but it tell me that error 0x8007007e.
> I find the answer in microsoft.com :
> "The line and page that are specified vary from the preceding sample
error
> message. However, the line that is noted in the error message will
likely
> have the following syntax:
> Set objHostName = Server.CreateObject("HostName.ConvertHostName") "
> it said i was trying to use the Server.CreateObject method to
instantiate
> an object that was not registered.
>
> But ,the question is the asp file is localstart.asp(included in
> wwwroot),this file must be correct. And in the past , I can use it (IIS)
> normally ,without any problem. Localstart.asp can display properly.
>
> What should I do now?
|
|
 |