runtime error 800a01a8, Object Required: 'Application(...)' 
Author Message
 runtime error 800a01a8, Object Required: 'Application(...)'

First off, let me make my disclaimer: I am by no means a programmer. I'm
simply a sysadmin who is trying to get an idea of what is going wrong
with my website. Now that that's out of the way, here's my problem.

Intermittently, some of my users are getting this error when attempting
to logon to our site. This does not happen all the time, so there must
be some conditions to be met to generate this error.

**************************
Microsoft VBScript runtime error '800a01a8'
Object required: 'Application(...)'
/Execute.asp, line 15
***************************

Here are the first 18 lines of Execute.asp:


<!-- #Include File="Includes/incInitPage.asp" -->
<%
Dim m_objBusiness
Dim m_sAppPath
Dim m_sProjectPath

Call Main()

Sub Main
   Dim sProgID

   sProgID = Request.QueryString("ProgID")

   Set m_objDictionary = Application(Session("sAppID"))
   m_sAppPath = m_objDictionary("APP_OPTIONS")("APP_PATH")
   m_sProjectPath = m_objDictionary("APP_OPTIONS")("PROJECT_PATH")
%>

Any help would be greatly appreciated. Thanks!



Sat, 19 Jul 2003 05:22:10 GMT  
 runtime error 800a01a8, Object Required: 'Application(...)'
sounds as though the application variable doesn exist..

application variables start at the start of the web server ..

if you restart the web service this problem should go away..


Quote:
> First off, let me make my disclaimer: I am by no means a programmer. I'm
> simply a sysadmin who is trying to get an idea of what is going wrong
> with my website. Now that that's out of the way, here's my problem.

> Intermittently, some of my users are getting this error when attempting
> to logon to our site. This does not happen all the time, so there must
> be some conditions to be met to generate this error.

> **************************
> Microsoft VBScript runtime error '800a01a8'
> Object required: 'Application(...)'
> /Execute.asp, line 15
> ***************************

> Here are the first 18 lines of Execute.asp:


> <!-- #Include File="Includes/incInitPage.asp" -->
> <%
> Dim m_objBusiness
> Dim m_sAppPath
> Dim m_sProjectPath

> Call Main()

> Sub Main
>    Dim sProgID

>    sProgID = Request.QueryString("ProgID")

>    Set m_objDictionary = Application(Session("sAppID"))
>    m_sAppPath = m_objDictionary("APP_OPTIONS")("APP_PATH")
>    m_sProjectPath = m_objDictionary("APP_OPTIONS")("PROJECT_PATH")
> %>

> Any help would be greatly appreciated. Thanks!



Sat, 19 Jul 2003 12:20:15 GMT  
 runtime error 800a01a8, Object Required: 'Application(...)'
What kind of "dictionary" object is this???

Q240415 - VBScripting Dictionary Not Safe to Use in IIS Application Scope
http://support.microsoft.com/support/kb/articles/Q240/4/15.ASP

--
Michael Harris
Microsoft.MVP.Scripting
--

Please do not email questions - post them to the newsgroup instead.
--

Quote:

> First off, let me make my disclaimer: I am by no means a programmer. I'm
> simply a sysadmin who is trying to get an idea of what is going wrong
> with my website. Now that that's out of the way, here's my problem.

> Intermittently, some of my users are getting this error when attempting
> to logon to our site. This does not happen all the time, so there must
> be some conditions to be met to generate this error.

> **************************
> Microsoft VBScript runtime error '800a01a8'
> Object required: 'Application(...)'
> /Execute.asp, line 15
> ***************************

> Here are the first 18 lines of Execute.asp:


> <!-- #Include File="Includes/incInitPage.asp" -->
> <%
> Dim m_objBusiness
> Dim m_sAppPath
> Dim m_sProjectPath

> Call Main()

> Sub Main
>    Dim sProgID

>    sProgID = Request.QueryString("ProgID")

>    Set m_objDictionary = Application(Session("sAppID"))
>    m_sAppPath = m_objDictionary("APP_OPTIONS")("APP_PATH")
>    m_sProjectPath = m_objDictionary("APP_OPTIONS")("PROJECT_PATH")
> %>

> Any help would be greatly appreciated. Thanks!



Sun, 20 Jul 2003 12:52:52 GMT  
 runtime error 800a01a8, Object Required: 'Application(...)'
That's certainly what the KB article suggests ;-)...

--
Michael Harris
Microsoft.MVP.Scripting
--

Please do not email questions - post them to the newsgroup instead.
--

Quote:

> I got a hold of the source for the backend application. Here is the line defining m_objDictionary.
> ********************************************
> Private m_objDictionary As Scripting.Dictionary
> ********************************************

> So, I take it we should be using the Commerce Dictionary then?


>   What kind of "dictionary" object is this???
>   Q240415 - VBScripting Dictionary Not Safe to Use in IIS Application Scope
>   http://support.microsoft.com/support/kb/articles/Q240/4/15.ASP

>   --
>   Michael Harris
>   Microsoft.MVP.Scripting
>   --

>   Please do not email questions - post them to the newsgroup instead.
>   --




- Show quoted text -

Quote:
>   > First off, let me make my disclaimer: I am by no means a programmer. I'm
>   > simply a sysadmin who is trying to get an idea of what is going wrong
>   > with my website. Now that that's out of the way, here's my problem.

>   > Intermittently, some of my users are getting this error when attempting
>   > to logon to our site. This does not happen all the time, so there must
>   > be some conditions to be met to generate this error.

>   > **************************
>   > Microsoft VBScript runtime error '800a01a8'
>   > Object required: 'Application(...)'
>   > /Execute.asp, line 15
>   > ***************************

>   > Here are the first 18 lines of Execute.asp:


>   > <!-- #Include File="Includes/incInitPage.asp" -->
>   > <%
>   > Dim m_objBusiness
>   > Dim m_sAppPath
>   > Dim m_sProjectPath

>   > Call Main()

>   > Sub Main
>   >    Dim sProgID

>   >    sProgID = Request.QueryString("ProgID")

>   >    Set m_objDictionary = Application(Session("sAppID"))
>   >    m_sAppPath = m_objDictionary("APP_OPTIONS")("APP_PATH")
>   >    m_sProjectPath = m_objDictionary("APP_OPTIONS")("PROJECT_PATH")
>   > %>

>   > Any help would be greatly appreciated. Thanks!



Tue, 22 Jul 2003 09:38:25 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. VB script runtime error '800a01a8'

2. Microsoft VBScript runtime error '800a01a8'

3. Microsoft VBScript runtime error '800a01a8'

4. Microsoft VBScript runtime error '800a01a8'

5. Microsoft VBScript runtime error '800a01a8'

6. Microsoft VBScript runtime error '800a01a8'

7. VBScript runtime error '800a01a8'

8. runtime error object required 'id'

9. Help: VBScript Runtime Error '800a01a8' Object Required

10. Microsoft VBScript runtime (0x800A01A8) - Object required: ''

11. Error: require object 'server'

12. Error: object required: 'WScript'

 

 
Powered by phpBB® Forum Software