Connecting Tech Pros Worldwide Help | Site Map

MSXML size limitation

=?Utf-8?B?c2lkbGV0?=
Guest
 
Posts: n/a
#1: Nov 10 '08
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?


Anthony Jones
Guest
 
Posts: n/a
#2: Nov 11 '08

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

=?Utf-8?B?c2lkbGV0?=
Guest
 
Posts: n/a
#3: Nov 11 '08

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