I have general question regarding cached scripting engines & memory usage. We are running IIS5 with windows 2000 server. I have this one app that we launched 3-4 weeks ago, that a specific object genreates a "object required" error message about 5% of the time. When asking someone, they suggested that I am running out of scripting engines ( the app is not releasing the objects), but when I think about it, why would it do it for one specific object. I created an include file that sets every object that I create in the app to "nothing" and include on the bottom of every page. When I run the performance monitor, the Cached scripting engines keep climbing (we are at 86) and the memeory usage as well. Is this an issue? and if it is, what is the remedy? The object that generates the error message is in bold:
Set XMLDoc = Server.CreateObject("MSXML.DOMDocument"
XMLDoc.loadXML(ResponseXML)
Set TopNode = XMLDoc.firstChild
if (TopNode.hasChildNodes()) and not(TopNode is nothing) then
If TopNode.NodeName = "rca_response" Then
Set ResponseNode = TopNode.firstChild
If Responsenode.NodeName = "response" then
Thanks for any and all,
Set XMLDoc = Server.CreateObject("MSXML.DOMDocument"
XMLDoc.loadXML(ResponseXML)
Set TopNode = XMLDoc.firstChild
if (TopNode.hasChildNodes()) and not(TopNode is nothing) then
If TopNode.NodeName = "rca_response" Then
Set ResponseNode = TopNode.firstChild
If Responsenode.NodeName = "response" then
Thanks for any and all,