I have written one schedule agent which runs on domino server. The same code worked fine in the development and staging environment.
When the I same code ran on production server, I am getting the following error
msxml3.dll: Not enough storage is available to complete this operation
Sample code snippet.
Set xmlhttp = CreateObject(“Msxml2.ServerXMLHTTP”) xmlhttp.setOption 2, 13056
Call xmlhttp.open(“GET”, docConfig.US_XML_Address(0), False)
Call xmlhttp.send()
While (xmlhttp.readyState<>4)
xmlhttp.waitForResponse(1000)
Wend
srcStatus = xmlhttp.status
If srcStatus = “200” Then
srcHTML = xmlhttp.responseText
Set xmlDoc = CreateObject(“Msxml2.DOMDocument”)
xmlDoc.async = False
bFlag=xmlDoc.loadXML (srcHTML)
Thanks in Advance,
Basha