Hi,
I have deployed several web sites using a COM+ application for the back end on a Windows 2003 server. I have a protected ADMIN folder for administrative functions. My web host has set up administrative accounts to get to these administrative functions. The admin accounts for ONE web site are generating a permission denied error when requesting the admin page.
I know that this seems like an obvious permissions setting for this account, but the web host managers swear tha they have checked and rechecked the permission settings for both the web and the account. They have even deleted the web and the account and re-entered them both. We still get the same error.
The error is as follows:
Here's the entire global.asa file:
As you can see from the error, the failure is coming--not when webMgr is created, but when there is a reference to the InitSession method.
This application is set up as a COM+ application and actively used on other webs. My personal account will access this page just fine. Thee are two user accounts set up for this and both generate the above error.
By the way, the anonymous user can access the web with no problem. That executes the same global.asa to create the webMgr object.
These user accounts have been given full access to the entire web. They use the same account to ftp changes to the web without a problem.
We're running out of places to look for permission settings. Any new thoughts would be greatly appreciated. This is only one of several mysteries surrounding the global.asa file and these protected administrative functions, but right now I'm focussed on this one behavior.
Thanks in advance,
Ron
I have deployed several web sites using a COM+ application for the back end on a Windows 2003 server. I have a protected ADMIN folder for administrative functions. My web host has set up administrative accounts to get to these administrative functions. The admin accounts for ONE web site are generating a permission denied error when requesting the admin page.
I know that this seems like an obvious permissions setting for this account, but the web host managers swear tha they have checked and rechecked the permission settings for both the web and the account. They have even deleted the web and the account and re-entered them both. We still get the same error.
The error is as follows:
Active Server Pages error '00000000'
Create object failed
?
An error occurred while creating object 'webMgr'.
Microsoft VBScript runtime error '800a0046'
Permission denied: 'webMgr'
/LM/W3SVC/1071261871/Root/global.asa, line 12
Here's the entire global.asa file:
Code:
<object RunAt=Server Scope=Session ID=webMgr ProgID="paweb.WebManager">
REM This is the Publishers' Assistant Web Services Manager
</object>
<script Language=VBScript RunAt=Server>
SUB Session_OnStart
' Tell the web manager where to find the INI file.
Session("cHomeFolder") = Request.ServerVariables("APPL_PHYSICAL_PATH")
IF webMgr.InitSession(Session("cHomeFolder")) then
Session("cOwnerEmail") = webMgr.GetSessionProperty("rsOwner.oRecord.Email")
ELSE
Session("cOwnerEmail") = "Session was not available."
END IF
End Sub
SUB Session_OnEnd
' Release any resources that remain within the session.
' Release the components from the web manager before releasing the
' web manager.
webMgr.Release()
Set webMgr = Nothing
End Sub
</script>
As you can see from the error, the failure is coming--not when webMgr is created, but when there is a reference to the InitSession method.
This application is set up as a COM+ application and actively used on other webs. My personal account will access this page just fine. Thee are two user accounts set up for this and both generate the above error.
By the way, the anonymous user can access the web with no problem. That executes the same global.asa to create the webMgr object.
These user accounts have been given full access to the entire web. They use the same account to ftp changes to the web without a problem.
We're running out of places to look for permission settings. Any new thoughts would be greatly appreciated. This is only one of several mysteries surrounding the global.asa file and these protected administrative functions, but right now I'm focussed on this one behavior.
Thanks in advance,
Ron