"Enable Buffering" option in the App Options tab of the virtual directory property settings
I have some problems with MS Office SOAP toolkit and it says in the documentation that:
Soap will not work correctly unless the "Enable Buffering" option is set in the App Options tab of the virtual directory property settings.
But how do you enable it? I have a site under IIS7 and I can't find such option. I believe that when this documentation was written t开发者_JAVA百科here was no IIS7. So does anybody know where the buffering can be switched on? My web site is on ASP.NET .
Not sure if you need it in IIS7, but you can set it like so:
Enable or disable buffering To enable or disable buffering of ASP application output, use the following syntax:
appcmd set config /section:asp /bufferingOn:True|False
True enables buffering whereas False disables buffering. The default value is True.
Found on this URL
精彩评论