Hi!
I'm trying to publish my web application, using WebDav, to a windows web server 2008 x64 and it almost works. Request filtering is off so all files, except web.config, are properly uploaded. Web.config fails to upload because the validation of the file fails. Looking in the logfile it says "Unrecognized element 'providerOption'". It seems to me as if, whoever is doing the validation, does not recognize the following section in my web.config:
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4" compilerOptions="/warnaserror-">
<providerOption name="CompilerVersion" value="v3.5"/>
</compiler>
</compilers>
</system.codedom>
Any ideas on how to resolve this? Can the validation be disabled? Can the validator be forced to understand the above config section? After all, it is Microsoft generated...
/Måns