home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 December / PCWorld_2004-12_cd.bin / software / komercni / netgenium / NETGenium.msi / _B4A5F9DE730F039E0CBFC30C1A8A8467 / _F030C650528B4E559049B5B863770795 < prev    next >
Extensible Markup Language  |  2004-10-01  |  4KB  |  100 lines

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.   
  4.   <system.web>
  5.   
  6.     <!--  DYNAMIC DEBUG COMPILATION
  7.           Set compilation debug="true" to enable ASPX debugging.  Otherwise, setting this value to
  8.           false will improve runtime performance of this application. 
  9.           Set compilation debug="true" to insert debugging symbols (.pdb information)
  10.           into the compiled page. Because this creates a larger file that executes
  11.           more slowly, you should set this value to true only when debugging and to
  12.           false at all other times. For more information, refer to the documentation about
  13.           debugging ASP.NET files.
  14.     -->
  15.     <compilation 
  16.          defaultLanguage="c#"
  17.          debug="true"
  18.     />
  19.  
  20.     <!--  CUSTOM ERROR MESSAGES
  21.           Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. 
  22.           Add <error> tags for each of the errors you want to handle.
  23.  
  24.           "On" Always display custom (friendly) messages.
  25.           "Off" Always display detailed ASP.NET error information.
  26.           "RemoteOnly" Display custom (friendly) messages only to users not running 
  27.            on the local Web server. This setting is recommended for security purposes, so 
  28.            that you do not display application detail information to remote clients.
  29.     -->
  30.     <customErrors mode="Off" />
  31.  
  32.     <!--  AUTHENTICATION 
  33.           This section sets the authentication policies of the application. Possible modes are "Windows", 
  34.           "Forms", "Passport" and "None"
  35.  
  36.           "None" No authentication is performed. 
  37.           "Windows" IIS performs authentication (Basic, Digest, or Integrated Windows) according to 
  38.            its settings for the application. Anonymous access must be disabled in IIS. 
  39.           "Forms" You provide a custom form (Web page) for users to enter their credentials, and then 
  40.            you authenticate them in your application. A user credential token is stored in a cookie.
  41.           "Passport" Authentication is performed via a centralized authentication service provided
  42.            by Microsoft that offers a single logon and core profile services for member sites.
  43.     -->
  44.     <authentication mode="Windows" />
  45.  
  46.     <!--  APPLICATION-LEVEL TRACE LOGGING
  47.           Application-level tracing enables trace log output for every page within an application. 
  48.           Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
  49.           trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
  50.           application trace log by browsing the "trace.axd" page from your web application
  51.           root. 
  52.     -->
  53.     <trace
  54.         enabled="false"
  55.         requestLimit="10"
  56.         pageOutput="false"
  57.         traceMode="SortByTime"
  58.         localOnly="true"
  59.     />
  60.  
  61.     <!--  SESSION STATE SETTINGS
  62.           By default ASP.NET uses cookies to identify which requests belong to a particular session. 
  63.           If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
  64.           To disable cookies, set sessionState cookieless="true".
  65.           
  66.           timeout = 480 minutes = 8 hours
  67.     -->
  68.     <sessionState 
  69.             mode="InProc"
  70.             stateConnectionString="tcpip=127.0.0.1:42424"
  71.             sqlConnectionString="data source=127.0.0.1;user id=sa;password="
  72.             cookieless="false" 
  73.             timeout="480"
  74.     />
  75.  
  76.     <!--  GLOBALIZATION
  77.           This section sets the globalization settings of the application. 
  78.     -->
  79.     <globalization 
  80.             requestEncoding="utf-8" 
  81.             responseEncoding="utf-8" 
  82.     />
  83.    
  84.    <!--   HTTP RUNTIME
  85.    
  86.           maxRequestLength = 512000 kB = 500MB
  87.           executionTimeout = 18000 seconds = 300 minutes = 5 hours
  88.    -->
  89.    <httpRuntime
  90.            maxRequestLength="512000"
  91.            executionTimeout="18000"
  92.    />
  93.  
  94.    <pages
  95.            validateRequest="false"
  96.    />
  97.    
  98.  </system.web>
  99.  
  100. </configuration>