Connecting Tech Pros Worldwide Help | Site Map

MSXML size limitation

  #1  
Old November 10th, 2008, 04:55 PM
=?Utf-8?B?c2lkbGV0?=
Guest
 
Posts: n/a
I'm using the following:

source = new ActiveXObject("Microsoft.XMLDOM");

source.async = false;

//Send request string and read the result into the XMLDOM object

source.load(sreq);

This works fine (I get over 4MB back in XML) on my development workstation
which is Win2K but on the Windows 2003 server it's cutoff

So my new question is whether there is something in the Metabase on the 2003
server which can alter this to work as it did before under Win2k so I get the
larger than 2MB back into the XML document?


  #2  
Old November 11th, 2008, 09:45 AM
Anthony Jones
Guest
 
Posts: n/a

re: MSXML size limitation


"sidlet" <sidlet@discussions.microsoft.comwrote in message
news:F11C1A9B-277C-4133-9842-28949358C1C0@microsoft.com...
Quote:
I'm using the following:
>
source = new ActiveXObject("Microsoft.XMLDOM");
>
source.async = false;
>
//Send request string and read the result into the XMLDOM object
>
source.load(sreq);
>
This works fine (I get over 4MB back in XML) on my development workstation
which is Win2K but on the Windows 2003 server it's cutoff
>
So my new question is whether there is something in the Metabase on the
2003
server which can alter this to work as it did before under Win2k so I get
the
larger than 2MB back into the XML document?
>
By default the AspBufferingLimit is be default set to 4MB on IIS6.

See:-

http://www.microsoft.com/technet/pro....mspx?mfr=true



--
Anthony Jones - MVP ASP/ASP.NET

  #3  
Old November 11th, 2008, 12:55 PM
=?Utf-8?B?c2lkbGV0?=
Guest
 
Posts: n/a

re: MSXML size limitation


Thanks -- I owe you many beers.

"Anthony Jones" wrote:
Quote:
"sidlet" <sidlet@discussions.microsoft.comwrote in message
news:F11C1A9B-277C-4133-9842-28949358C1C0@microsoft.com...
Quote:
I'm using the following:

source = new ActiveXObject("Microsoft.XMLDOM");

source.async = false;

//Send request string and read the result into the XMLDOM object

source.load(sreq);

This works fine (I get over 4MB back in XML) on my development workstation
which is Win2K but on the Windows 2003 server it's cutoff

So my new question is whether there is something in the Metabase on the
2003
server which can alter this to work as it did before under Win2k so I get
the
larger than 2MB back into the XML document?
>
By default the AspBufferingLimit is be default set to 4MB on IIS6.
>
See:-
>
http://www.microsoft.com/technet/pro....mspx?mfr=true
>
>
>
--
Anthony Jones - MVP ASP/ASP.NET
>
>
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Safety settings on this computer prohibit accessing a data source on another domain sonu answers 0 January 24th, 2006 08:25 AM
ServerXMLHTTP uses 100% CPU for a long time Ed McNierney answers 7 December 3rd, 2005 11:55 AM