
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.
> --
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!