Link to home
Start Free TrialLog in
Avatar of Lico_w
Lico_w

asked on

ASP Error

I have an asp web app which I am moving from win2k (IIS5) to win03 (IIS6). However now it's been ported across I keep getting the below error:

Microsoft VBScript runtime error '800a01a8'
Object required: 'application(...)'
/report29/application/inc/aspFunctions.asp, line 750

The line of the file it refers to is below:

set xmlFiles = application("divisionalFileList") 'server.CreateObject("MSXML2.DomDocument")

Any suggestions?
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

visibly, you are missing some code (aka include) that defines that "application" variable.
you might want to check on other pages what it could be ...
searching for "application = "  could help ...
Avatar of Lico_w
Lico_w

ASKER

Why would it work in IIS5 if that was the case. As I say I'm moving a fully functioning app over. Also I can't find a file where the application function exists  :(
Avatar of Lico_w

ASKER

There is a directory called application..?
>There is a directory called application..?
actually, here we go about what the "application" object:
http://www.w3schools.com/asp/coll_contents_app.asp

Avatar of Lico_w

ASKER

Interesting thanks for that. So how would individual pages know what or where the 'application' variables, functions etc. are configured? Is there something like an include that needs to be set on each page or is this done when the code is compiled or is it just an object that can be used on any asp page to set variables?
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial