home *** CD-ROM | disk | FTP | other *** search
/ business-86-101-185-173.business.broadband.hu / business-86-101-185-173.business.broadband.hu.zip / business-86-101-185-173.business.broadband.hu / scs.zip / Web.Config.back < prev   
Extensible Markup Language  |  2009-10-02  |  16KB  |  250 lines

  1. ∩╗┐<?xml version="1.0" encoding="utf-8"?>
  2. <!--  EDITING THIS FILE
  3.  
  4.       You should edit the copy of this Web.config file in the [application name] directory.
  5.  
  6. -->
  7. <configuration>
  8.   <!--CONFIGURE APPLICATION TO BE ABLE TO USE AJAX V1.0 - BASED ASP.NET FEATURES -->
  9.   <configSections>
  10.     <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
  11.       <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
  12.         <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
  13.         <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
  14.           <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
  15.           <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
  16.           <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
  17.         </sectionGroup>
  18.       </sectionGroup>
  19.     </sectionGroup>
  20.   </configSections>
  21.   <appSettings>
  22.     <!--  EVENT LOGGING
  23.           Set LogEvents value="false" to disable all logging to the system event log.
  24.           
  25.           DATABASE COMMAND LOGGING
  26.           Set LogDatabaseCommands value="true" to log all database SQL commands to the
  27.           system the event log. Only works if LogEvents = "true".
  28.          
  29.           DATABASE ERROR LOGGING
  30.           Set LogDatabaseExceptions value="all" to log all database exceptions to the
  31.           system the event log.  Set to "default" to only log exceptions that are unlikely
  32.           to be caused by normal user interaction.  Only works if LogEvents = "true"
  33.  
  34.           Set LogCommitExceptions value="all" to log all database transaction commit exceptions
  35.           to the system the event log.  Set to "default" to only log exceptions that are unlikely
  36.           to be caused by normal user interaction.  Only works if LogEvents = "true".
  37.     
  38.           TRACE LOGGING OUTPUT
  39.           To get detailed page-level tracing, set the following to "true":
  40.               TraceDatabaseCommands, TraceDataAccessMethods, TraceTransactionCache
  41.           Also set trace enabled="true" and pageOutput="true" in the 
  42.           APPLICATION-LEVEL TRACE LOGGING section below.
  43.     -->
  44.     <!-- VIEWSTATE LOCATION
  45.          The ViewStateLocation specifies where the view state for a page
  46.          should be stored.  
  47.          1. Page (default): Stored it in the page.  Increases page size.
  48.             Always works, but slower to encrypt, decrypt and send.
  49.          2. Session: Store it in the session on the server.
  50.             Results in better performance, but may not always work because
  51.             session data may be timed out, or flushed to make room for more.
  52.          3. Cache: Stored in the cache.  Similar to Session, but has more
  53.             timeout options.
  54.          4. File: Stored in a temporary file.  Will always work, but slower.
  55.          5. Database: Stored in the database.  Will always work, but slower.
  56.          See online help for more information.
  57.     -->
  58.     <add key="LogDatabaseCommands" value="false" />
  59.     <add key="LogDatabaseExceptions" value="default" />
  60.     <add key="LogCommitExceptions" value="default" />
  61.     <add key="TraceDatabaseCommands" value="false" />
  62.     <add key="TraceDataAccessMethods" value="false" />
  63.     <add key="TraceTransactionCache" value="false" />
  64.     <add key="ViewStateLocation" value="Page" />
  65.     <add key="WebServer" value="http://localhost" />
  66.     <add key="ApplicationName" value="Warehouse" />
  67.     <add key="FCKeditor:BasePath" value="~/FCKeditor/" />
  68.     <add key="CookieEncryptionKey" value="0E3BDF50-97D5-43D1-9218-7FD8E5220043" />
  69.     <add key="URLEncryptionKey" value="0E3BDF50-97D5-43D1-9218-7FD8E5220043" />
  70.     <add key="DatabaseSCS1" value="Data Source=DIMS;Database=SCS;Trusted_Connection=no;User Id=scsuser;Password=scs" />
  71.     <add key="SignInPageUrl" value="Security/SignIn.aspx" />
  72.     <add key="SignedOutPageUrl" value="Security/SignOut.aspx" />
  73.     <add key="DefaultPageUrl" value="import_item/ShowImport_itemTablePage.aspx" />
  74.     <add key="ShowAutoSignInCheckBox" value="False" />
  75.     <add key="ShowRememberPasswordCheckBox" value="False" />
  76.     <add key="ShowRememberUserCheckBox" value="False" />
  77.     <add key="LogEvents" value="false" />
  78.     <add key="AuthenticationType" value="ProprietorySecurity" />
  79.     <add key="RoleManagement" value="ProprietoryRoles" />
  80.     <add key="SecurityDisabled" value="False" />
  81.     <add key="UserIdentityTable" value="Warehouse.Business.UserTable, App_Code" />
  82.   </appSettings>
  83.   <system.web>
  84.     <!--
  85.           Set compilation debug="true" to insert debugging
  86.           symbols into the compiled page. Because this
  87.           affects performance, set this value to true only
  88.           during development.
  89.     -->
  90.     <compilation debug="false">
  91.       <assemblies>
  92.         <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  93.       </assemblies>
  94.     </compilation>
  95.     <!-- ASMX is mapped to a new handler so that proxy JavaScripts can also be served. -->
  96.     <httpHandlers>
  97.       <remove verb="*" path="*.asmx" />
  98.       <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  99.       <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  100.       <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
  101.     </httpHandlers>
  102.     <httpModules>
  103.       <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  104.     </httpModules>
  105.     <pages validateRequest="false">
  106.       <namespaces>
  107.         <clear />
  108.         <add namespace="Warehouse" />
  109.         <add namespace="Warehouse.UI" />
  110.         <add namespace="Warehouse.UI.Controls" />
  111.         <add namespace="Warehouse.Data" />
  112.         <add namespace="Warehouse.Business" />
  113.         <add namespace="System" />
  114.         <add namespace="System.Collections" />
  115.         <add namespace="System.Collections.Specialized" />
  116.         <add namespace="System.Configuration" />
  117.         <add namespace="System.Text" />
  118.         <add namespace="System.Text.RegularExpressions" />
  119.         <add namespace="System.Web" />
  120.         <add namespace="System.Web.Caching" />
  121.         <add namespace="System.Web.SessionState" />
  122.         <add namespace="System.Web.Security" />
  123.         <add namespace="System.Web.Profile" />
  124.         <add namespace="System.Web.UI" />
  125.         <add namespace="System.Web.UI.WebControls" />
  126.         <add namespace="System.Web.UI.WebControls.WebParts" />
  127.         <add namespace="System.Web.UI.HtmlControls" />
  128.         <add namespace="BaseClasses" />
  129.         <add namespace="BaseClasses.Web.UI.WebControls" />
  130.       </namespaces>
  131.       <controls>
  132.         <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  133.       </controls>
  134.       <tagMapping>
  135.         <add tagType="System.Web.UI.WebControls.CompareValidator" mappedTagType="Sample.Web.UI.Compatibility.CompareValidator, Validators, Version=1.0.0.0" />
  136.         <add tagType="System.Web.UI.WebControls.CustomValidator" mappedTagType="Sample.Web.UI.Compatibility.CustomValidator, Validators, Version=1.0.0.0" />
  137.         <add tagType="System.Web.UI.WebControls.RangeValidator" mappedTagType="Sample.Web.UI.Compatibility.RangeValidator, Validators, Version=1.0.0.0" />
  138.         <add tagType="System.Web.UI.WebControls.RegularExpressionValidator" mappedTagType="Sample.Web.UI.Compatibility.RegularExpressionValidator, Validators, Version=1.0.0.0" />
  139.         <add tagType="System.Web.UI.WebControls.RequiredFieldValidator" mappedTagType="Sample.Web.UI.Compatibility.RequiredFieldValidator, Validators, Version=1.0.0.0" />
  140.         <add tagType="System.Web.UI.WebControls.ValidationSummary" mappedTagType="Sample.Web.UI.Compatibility.ValidationSummary, Validators, Version=1.0.0.0" />
  141.       </tagMapping>
  142.     </pages>
  143.     <!--  CUSTOM ERROR MESSAGES
  144.           Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. 
  145.           Add <error> tags for each of the errors you want to handle.
  146.     -->
  147.     <customErrors mode="Off" defaultRedirect="Shared/Internal_Server_Error.html">
  148.       <error statusCode="404" redirect="Shared/Internal_Server_Error.html" />
  149.       <error statusCode="500" redirect="Shared/Internal_Server_Error.html" />
  150.     </customErrors>
  151.     <!--  AUTHENTICATION 
  152.           This section sets the authentication policies of the application. Possible modes are "Windows", 
  153.           "Forms", "Passport" and "None"
  154.     -->
  155.     <authentication mode="Forms" />
  156.     <!--  IDENTITY 
  157.           Set Impersonate="true" to enable IIS to run this application under the credentials of the current user.
  158.     -->
  159.     <identity impersonate="false" />
  160.     <!--  AUTHORIZATION 
  161.           This section sets the authorization policies of the application. You can allow or deny access
  162.           to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous 
  163.           (unauthenticated) users.
  164.     -->
  165.     <authorization>
  166.       <allow users="*" />
  167.       <!-- Allow all users -->
  168.       <!--  <allow     users="[comma separated list of users]"
  169.                              roles="[comma separated list of roles]"/>
  170.                   <deny      users="[comma separated list of users]"
  171.                              roles="[comma separated list of roles]"/>
  172.             -->
  173.     </authorization>
  174.     <!--  APPLICATION-LEVEL TRACE LOGGING
  175.           Application-level tracing enables trace log output for every page within an application. 
  176.           Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
  177.           trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
  178.           application trace log by browsing the "trace.axd" page from your web application
  179.           root. 
  180.     -->
  181.     <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />
  182.     <!--  SESSION STATE SETTINGS
  183.           By default ASP.NET uses cookies to identify which requests belong to a particular session. 
  184.           If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
  185.           To disable cookies, set sessionState cookieless="true".
  186.     -->
  187.     <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=sa;password=" cookieless="false" timeout="60" />
  188.     <!--  GLOBALIZATION
  189.           This section sets the globalization settings of the application. 
  190.     -->
  191.     <globalization fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8" culture="hu-HU" uiCulture="hu" />
  192.     <!--  HTTP RUN TIME
  193.           This section sets the run time settings of the application.
  194.     -->
  195.     <httpRuntime maxRequestLength="10240" />
  196.   </system.web>
  197.   <location path="DefaultWsdlHelpGenerator.aspx">
  198.     <system.web>
  199.       <pages styleSheetTheme="" />
  200.     </system.web>
  201.   </location>
  202.   <system.web.extensions>
  203.     <scripting>
  204.       <webServices>
  205.         <!-- Uncomment this line to customize maxJsonLength and add a custom converter -->
  206.         <!--
  207.                   <jsonSerialization maxJsonLength="500">
  208.                   <converters>
  209.                   <add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>
  210.                   </converters>
  211.                   </jsonSerialization>
  212.                 -->
  213.         <!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. -->
  214.         <!--
  215.                   <authenticationService enabled="true" requireSSL = "true|false"/>
  216.                 -->
  217.         <!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved
  218.                   and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and
  219.                   writeAccessProperties attributes. -->
  220.         <!--
  221.                   <profileService enabled="true"
  222.                   readAccessProperties="propertyname1,propertyname2"
  223.                   writeAccessProperties="propertyname1,propertyname2" />
  224.                  -->
  225.       </webServices>
  226.       <!-- 
  227.               <scriptResourceHandler enableCompression="true" enableCaching="true" />
  228.             -->
  229.     </scripting>
  230.   </system.web.extensions>
  231.   <system.webServer>
  232.     <validation validateIntegratedModeConfiguration="false" />
  233.     <modules>
  234.       <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  235.     </modules>
  236.     <handlers>
  237.       <remove name="WebServiceHandlerFactory-Integrated" />
  238.       <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  239.       <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  240.       <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  241.     </handlers>
  242.   </system.webServer>
  243.   <system.net>
  244.     <mailSettings>
  245.       <smtp from="user@ironspeed.com">
  246.         <network host="localhost" port="25" />
  247.       </smtp>
  248.     </mailSettings>
  249.   </system.net>
  250. </configuration>