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 < prev    next >
Extensible Markup Language  |  2012-06-03  |  15KB  |  227 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.   <connectionStrings>
  22.     <add name="DatabaseSCS1" connectionString="Data Source=localhost;Database=scs;Trusted_Connection=no;User Id=scsuser;Password=scs" providerName="System.Data.SqlClient" />
  23.   </connectionStrings>
  24.   <appSettings>
  25.     <!--  EVENT LOGGING
  26.           Set LogEvents value="false" to disable all logging to the system event log.
  27.           
  28.           DATABASE COMMAND LOGGING
  29.           Set LogDatabaseCommands value="true" to log all database SQL commands to the
  30.           system the event log. Only works if LogEvents = "true".
  31.          
  32.           DATABASE ERROR LOGGING
  33.           Set LogDatabaseExceptions value="all" to log all database exceptions to the
  34.           system the event log.  Set to "default" to only log exceptions that are unlikely
  35.           to be caused by normal user interaction.  Only works if LogEvents = "true"
  36.  
  37.           Set LogCommitExceptions value="all" to log all database transaction commit exceptions
  38.           to the system the event log.  Set to "default" to only log exceptions that are unlikely
  39.           to be caused by normal user interaction.  Only works if LogEvents = "true".
  40.     
  41.           TRACE LOGGING OUTPUT
  42.           To get detailed page-level tracing, set the following to "true":
  43.               TraceDatabaseCommands, TraceDataAccessMethods, TraceTransactionCache
  44.           Also set trace enabled="true" and pageOutput="true" in the 
  45.           APPLICATION-LEVEL TRACE LOGGING section below.
  46.     -->
  47.     <!-- VIEWSTATE LOCATION
  48.          The ViewStateLocation specifies where the view state for a page
  49.          should be stored.  
  50.          1. Page (default): Stored it in the page.  Increases page size.
  51.             Always works, but slower to encrypt, decrypt and send.
  52.          2. Session: Store it in the session on the server.
  53.             Results in better performance, but may not always work because
  54.             session data may be timed out, or flushed to make room for more.
  55.          3. Cache: Stored in the cache.  Similar to Session, but has more
  56.             timeout options.
  57.          4. File: Stored in a temporary file.  Will always work, but slower.
  58.          5. Database: Stored in the database.  Will always work, but slower.
  59.          See online help for more information.
  60.     -->
  61.     <add key="LogDatabaseCommands" value="false" />
  62.     <add key="LogDatabaseExceptions" value="default" />
  63.     <add key="LogCommitExceptions" value="default" />
  64.     <add key="TraceDatabaseCommands" value="false" />
  65.     <add key="TraceDataAccessMethods" value="false" />
  66.     <add key="TraceTransactionCache" value="false" />
  67.     <add key="ViewStateLocation" value="Page" />
  68.     <add key="WebServer" value="http://localhost" />
  69.     <add key="ApplicationName" value="Warehouse" />
  70.     <add key="FCKeditor:BasePath" value="~/FCKeditor/" />
  71.     <add key="CookieEncryptionKey" value="0E3BDF50-97D5-43D1-9218-7FD8E5220043" />
  72.     <add key="URLEncryptionKey" value="0E3BDF50-97D5-43D1-9218-7FD8E5220043" />
  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="SignInPageUrl" value="Security/SignIn.aspx" />
  79.     <add key="SignedOutPageUrl" value="Security/SignOut.aspx" />
  80.     <add key="AuthenticationType" value="ProprietorySecurity" />
  81.     <add key="RoleManagement" value="ProprietoryRoles" />
  82.     <add key="SecurityDisabled" value="False" />
  83.     <add key="SearchNestedGroups" value="False" />
  84.     <add key="UserIdentityTable" value="Warehouse.Business.UserTable, App_Code" />
  85.   </appSettings>
  86.   <system.web>
  87.     <!--
  88.           Set compilation debug="true" to insert debugging
  89.           symbols into the compiled page. Because this
  90.           affects performance, set this value to true only
  91.           during development.
  92.     -->
  93.     <roleManager enabled="false" cacheRolesInCookie="false" defaultProvider="AspNetSqlRoleProvider" />
  94.     <siteMap defaultProvider="AspNetXmlSiteMapProvider" />
  95.     <compilation debug="false">
  96.       <assemblies>
  97.         <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  98.         <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
  99.       </assemblies>
  100.     </compilation>
  101.     <!-- ASMX is mapped to a new handler so that proxy JavaScripts can also be served. -->
  102.     <httpHandlers>
  103.       <remove verb="*" path="*.asmx" />
  104.       <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  105.       <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" />
  106.       <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" />
  107.     </httpHandlers>
  108.     <httpModules>
  109.       <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  110.     </httpModules>
  111.     <pages validateRequest="false" theme="Vanilla">
  112.       <namespaces>
  113.         <clear />
  114.         <add namespace="Warehouse" />
  115.         <add namespace="Warehouse.UI" />
  116.         <add namespace="Warehouse.UI.Controls" />
  117.         <add namespace="Warehouse.Data" />
  118.         <add namespace="Warehouse.Business" />
  119.         <add namespace="System" />
  120.         <add namespace="System.Collections" />
  121.         <add namespace="System.Collections.Specialized" />
  122.         <add namespace="System.Configuration" />
  123.         <add namespace="System.Text" />
  124.         <add namespace="System.Text.RegularExpressions" />
  125.         <add namespace="System.Web" />
  126.         <add namespace="System.Web.Caching" />
  127.         <add namespace="System.Web.SessionState" />
  128.         <add namespace="System.Web.Security" />
  129.         <add namespace="System.Web.Profile" />
  130.         <add namespace="System.Web.UI" />
  131.         <add namespace="System.Web.UI.WebControls" />
  132.         <add namespace="System.Web.UI.WebControls.WebParts" />
  133.         <add namespace="System.Web.UI.HtmlControls" />
  134.         <add namespace="BaseClasses" />
  135.         <add namespace="BaseClasses.Web.UI.WebControls" />
  136.       </namespaces>
  137.       <controls>
  138.         <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  139.       </controls>
  140.       <tagMapping>
  141.         <add tagType="System.Web.UI.WebControls.CompareValidator" mappedTagType="Sample.Web.UI.Compatibility.CompareValidator, Validators, Version=1.0.0.0" />
  142.         <add tagType="System.Web.UI.WebControls.CustomValidator" mappedTagType="Sample.Web.UI.Compatibility.CustomValidator, Validators, Version=1.0.0.0" />
  143.         <add tagType="System.Web.UI.WebControls.RangeValidator" mappedTagType="Sample.Web.UI.Compatibility.RangeValidator, Validators, Version=1.0.0.0" />
  144.         <add tagType="System.Web.UI.WebControls.RegularExpressionValidator" mappedTagType="Sample.Web.UI.Compatibility.RegularExpressionValidator, Validators, Version=1.0.0.0" />
  145.         <add tagType="System.Web.UI.WebControls.RequiredFieldValidator" mappedTagType="Sample.Web.UI.Compatibility.RequiredFieldValidator, Validators, Version=1.0.0.0" />
  146.         <add tagType="System.Web.UI.WebControls.ValidationSummary" mappedTagType="Sample.Web.UI.Compatibility.ValidationSummary, Validators, Version=1.0.0.0" />
  147.       </tagMapping>
  148.     </pages>
  149.     <!--  CUSTOM ERROR MESSAGES
  150.           Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. 
  151.           Add <error> tags for each of the errors you want to handle.
  152.     -->
  153.     <customErrors mode="Off" defaultRedirect="Shared/Internal_Server_Error.html">
  154.       <error statusCode="404" redirect="Shared/Internal_Server_Error.html" />
  155.       <error statusCode="500" redirect="Shared/Internal_Server_Error.html" />
  156.     </customErrors>
  157.     <!--  AUTHENTICATION 
  158.           This section sets the authentication policies of the application. Possible modes are "Windows", 
  159.           "Forms", "Passport" and "None"
  160.     -->
  161.     <authentication mode="Forms" />
  162.     <!--  IDENTITY 
  163.           Set Impersonate="true" to enable IIS to run this application under the credentials of the current user.
  164.     -->
  165.     <identity impersonate="false" />
  166.     <!--  AUTHORIZATION 
  167.           This section sets the authorization policies of the application. You can allow or deny access
  168.           to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous 
  169.           (unauthenticated) users.
  170.     -->
  171.     <authorization>
  172.       <allow users="*" />
  173.       <!-- Allow all users -->
  174.       <!--  <allow     users="[comma separated list of users]"
  175.                              roles="[comma separated list of roles]"/>
  176.                   <deny      users="[comma separated list of users]"
  177.                              roles="[comma separated list of roles]"/>
  178.             -->
  179.     </authorization>
  180.     <!--  APPLICATION-LEVEL TRACE LOGGING
  181.           Application-level tracing enables trace log output for every page within an application. 
  182.           Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
  183.           trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
  184.           application trace log by browsing the "trace.axd" page from your web application
  185.           root. 
  186.     -->
  187.     <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />
  188.     <!--  SESSION STATE SETTINGS
  189.           By default ASP.NET uses cookies to identify which requests belong to a particular session. 
  190.           If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
  191.           To disable cookies, set sessionState cookieless="true".
  192.     -->
  193.     <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" />
  194.     <!--  GLOBALIZATION
  195.           This section sets the globalization settings of the application. 
  196.     -->
  197.     <globalization fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8" culture="hu-HU" uiCulture="hu" />
  198.     <!--  HTTP RUN TIME
  199.           This section sets the run time settings of the application.
  200.     -->
  201.     <httpRuntime maxRequestLength="10240" />
  202.   </system.web>
  203.   <location path="DefaultWsdlHelpGenerator.aspx">
  204.     <system.web>
  205.       <pages styleSheetTheme="" />
  206.     </system.web>
  207.   </location>
  208.   <system.webServer>
  209.     <validation validateIntegratedModeConfiguration="false" />
  210.     <modules>
  211.       <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  212.     </modules>
  213.     <handlers>
  214.       <remove name="WebServiceHandlerFactory-Integrated" />
  215.       <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" />
  216.       <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" />
  217.       <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" />
  218.     </handlers>
  219.   </system.webServer>
  220.   <system.net>
  221.     <mailSettings>
  222.       <smtp from="user@ironspeed.com">
  223.         <network host="localhost" port="25" />
  224.       </smtp>
  225.     </mailSettings>
  226.   </system.net>
  227. </configuration>