File Sytem Object versus MSXML

File Sytem Object versus MSXML

am 16.01.2007 19:04:06 von Patrice

Hello:

I need to dynamically include documents stored in my own website.
The website is coded in ASP.
As far as I know there are two common options: FSO and the MSXML Objects.
Which one of the two would be less of a resource hog for IIS ? Keep in mind
that the documetns I want to include are stored in the server where the
website resides, not on another webserver. Otherwise I'd have no choice but
to use msxml.

Thanks in advance.

Edward

Re: File Sytem Object versus MSXML

am 16.01.2007 19:33:08 von Anthony Jones

"Edward" wrote in message
news:qs8rh.662035$1T2.29971@pd7urf2no...
> Hello:
>
> I need to dynamically include documents stored in my own website.
> The website is coded in ASP.
> As far as I know there are two common options: FSO and the MSXML Objects.
> Which one of the two would be less of a resource hog for IIS ? Keep in
mind
> that the documetns I want to include are stored in the server where the
> website resides, not on another webserver. Otherwise I'd have no choice
but
> to use msxml.
>

I'm not sure why you would think MSXML would figure in any such solution.
FSO is easy enough to use for standard text content. ADODB.Stream is a more
flexible solution that handles both text and binary content fairly well

> Thanks in advance.
>
> Edward
>
>

Re: File Sytem Object versus MSXML

am 16.01.2007 20:17:31 von Dave Anderson

Edward wrote:
> I need to dynamically include documents stored in my own
> website. The website is coded in ASP.

Depending on what you mean by "dynamically include", you could include
Server.Execute() or