Microsoft VBScript runtime error '800a0007'
Okay, it's been a while and this has nothing to do with VB programming.
During performance testing, we are getting the following error displayed in the browser:
Microsoft VBScript runtime error '800a0007'
Out of memory
/_private/property_inc.asp, line 21
There is plenty of RAM on that specific IIS, so obviously this 'Out of Memory' message is misleading. The application is pure ASP. There are no .NET components, only VB scripting.
At this point I'm looking for any ideas, so feel free to brainstorm.
Thanks,
Alin
Re: Microsoft VBScript runtime error '800a0007'
Might be out of memory on the PC you're using?
Re: Microsoft VBScript runtime error '800a0007'
Quote:
Originally Posted by
dglienna
Might be out of memory on the PC you're using?
No, it's not that ... there is enough RAM on that machine. VM also looks ok.
What are some of the usual suspects when these errors are surfacing?
Re: Microsoft VBScript runtime error '800a0007'
You'd have to look at the code behind for that line #
Found this: http://social.technet.microsoft.com/...-7519afd97703/
Re: Microsoft VBScript runtime error '800a0007'
No way to really tell you what the error is without seeing the code where the error occurs. This sort of condition can arise in a loop at times but I cannot be more specific without seeing the actual code.
btw you can get an out of memory error when you use up the availible variable memory in VB even though the machine may have much more than this.
Re: Microsoft VBScript runtime error '800a0007'
okay, thanks guys, i'll have the developers have a closer look.