* DateTime.cs: Fixed DoParse. It was calling the wrong constructor
[mono.git] / data / machine.config
index 1a5b7c36f78796591800931a3a7030fcae4bfe8c..f8368b8b4704c733babb451297490156618fe4d3 100644 (file)
@@ -7,25 +7,75 @@
 
                <section name="system.diagnostics" type="System.Diagnostics.DiagnosticsConfigurationHandler, System" />
                <sectionGroup name="system.web">
-                       <section name="httpHandlers" type="System.Web.Configuration.HttpHandlersSectionHandler, System.Web" />
-                       <section name="httpModules" type="System.Web.Configuration.HttpModulesConfigurationHandler, System.Web" />
-                       <section name="machineKey" type="System.Web.Configuration.MachineKeyConfigHandler, System.Web" />
-                       <section name="authentication" type="System.Web.Configuration.AuthenticationConfigHandler, System.Web" />
-                       <section name="authorization" type="System.Web.Configuration.AuthorizationConfigHandler, System.Web" />
+                       <section name="httpHandlers"
+                                type="System.Web.Configuration.HttpHandlersSectionHandler, System.Web" />
+                       <section name="httpModules"
+                                type="System.Web.Configuration.HttpModulesConfigurationHandler, System.Web" />
+                       <section name="machineKey"
+                                type="System.Web.Configuration.MachineKeyConfigHandler, System.Web" />
+                       <section name="authentication"
+                                type="System.Web.Configuration.AuthenticationConfigHandler, System.Web" />
+                       <section name="authorization"
+                                type="System.Web.Configuration.AuthorizationConfigHandler, System.Web" />
+                       <section name="globalization"
+                                type="System.Web.Configuration.GlobalizationConfigurationHandler, System.Web" />
+                       <section name="sessionState"
+                                type="System.Web.SessionState.SessionStateSectionHandler, System.Web" />
+                       <section name="webServices"
+                                type="System.Web.Services.Configuration.WebServicesConfigurationSectionHandler, System.Web.Services" />
                </sectionGroup>
+               <sectionGroup name="system.net">
+                       <section name="settings"
+                                type="System.Net.Configuration.NetConfigurationHandler, System" />
+                       <section name="connectionManagement"
+                                type="System.Net.Configuration.ConnectionManagementHandler, System" />
+                       <section name="authenticationModules"
+                                type="System.Net.Configuration.NetAuthenticationModuleHandler, System" />
+                       <section name="defaultProxy"
+                                type="System.Net.Configuration.DefaultProxyHandler, System" />
+                       <section name="webRequestModules"
+                                type="System.Net.Configuration.WebRequestModuleHandler, System" />
+               </sectionGroup>
+               <section name="system.drawing" type="System.Configuration.NameValueSectionHandler" />
        </configSections>
+       <system.net>
+               <connectionManagement>
+                       <add address="*" maxconnection="2" />
+               </connectionManagement>
+               <authenticationModules>
+                       <add type="System.Net.BasicClient" />
+               </authenticationModules>
+               <defaultProxy>
+                       <proxy />
+                       <!-- bypassonlocal and proxyaddress are ok -->
+                       <!-- usessystemdefault is not supported -->
+               </defaultProxy>
+               <webRequestModules>
+                       <add prefix="http" type="System.Net.HttpRequestCreator, System" />
+                       <add prefix="https" type="System.Net.HttpRequestCreator, System" />
+                       <add prefix="file" type="System.Net.FileWebRequestCreator, System" />
+               </webRequestModules>
+               <settings>
+                       <ipv6 enabled="false"/>
+               </settings>
+       </system.net>
        <system.web>
                <httpHandlers>
                        <add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory, System.Web" />
+                       <add verb="*" path="*.asmx" validate="false"
+                            type="System.Web.Services.Protocols.WebServiceHandlerFactory, System.Web.Services" />
+                       <add verb="*" path="*.ashx" type="System.Web.UI.SimpleHandlerFactory, System.Web" />
                        <add verb="*" path="*.asax" type="System.Web.HttpForbiddenHandler, System.Web" />
                        <add verb="*" path="*.ascx" type="System.Web.HttpForbiddenHandler, System.Web" />
                        <add verb="*" path="*.config" type="System.Web.HttpForbiddenHandler, System.Web" />
+                       <add verb="*" path="*.cs" type="System.Web.HttpForbiddenHandler, System.Web" />
                        <add verb="GET,HEAD" path="*" type="System.Web.StaticFileHandler, System.Web" />
                        <add verb="*" path="*" type="System.Web.HttpMethodNotAllowedHandler, System.Web" />
                </httpHandlers>
                <httpModules>
                        <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule, System.Web" />
                        <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule, System.Web" />
+                       <add name="Session" type="System.Web.SessionState.SessionStateModule, System.Web" />
                </httpModules>
                <authentication mode="Forms">
                        <forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
                        </forms>
                </authentication>
                <machineKey validationKey="AutoGenerate" decryptionKey="AutoGenerate" validation="SHA1" />
+               <!-- Sample globalization settings
+               <globalization  requestEncoding="iso-8859-1"
+                               responseEncoding="iso-8859-1"
+                               fileEncoding="iso-8859-1" 
+                               culture="en-US"
+                               uiculture="en-US" />
+               -->
+               <sessionState mode="InProc" />
+               <webServices>
+                       <protocols>
+                               <add name="HttpSoap"/>
+                               <add name="HttpPost"/>
+                               <add name="HttpGet"/>
+                               <add name="Documentation"/>
+                       </protocols>
+                       <wsdlHelpGenerator href="DefaultWsdlHelpGenerator.aspx" />
+               </webServices>
        </system.web>
        
        <appSettings>
        <system.diagnostics>
                <trace autoflush="false" indentsize="4" />
        </system.diagnostics>
+        <system.drawing>
+        </system.drawing>
 </configuration>
 
+