home *** CD-ROM | disk | FTP | other *** search
/ ip-72-10-208-29.nwptny.ntcnet.net / ip-72-10-208-29.nwptny.ntcnet.net.tar / ip-72-10-208-29.nwptny.ntcnet.net / newhartsystems / ASP / bin / Web.config < prev    next >
Extensible Markup Language  |  2007-11-28  |  7KB  |  143 lines

  1. ∩╗┐<?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.     <appSettings>
  4.         <add key="Xheo.Licensing.KeyFolder" value="d:\inetpub\wwwroot\websites\newhartsystems\ASP\bin\keys"/>
  5.         <add key="Xheo.Licensing.TemplateFolder" value="d:\inetpub\wwwroot\websites\newhartsystems\ASP\bin\Templates"/>
  6.         <add key="Xheo.Licensing.SerialNumber" value="XSLDEV-008HP-49HRN-WYTQ9-NII6J-14TQD" />
  7.  
  8.         <add key="AspBinFolder" value="d:\inetpub\wwwroot\websites\newhartsystems\ASP\bin\" />
  9.         <add key="OrderFolder" value="d:\inetpub\wwwroot\newhartftp\" />
  10.         <add key="OrderHttp" value="ftp://72.10.208.29" />
  11.  
  12.         <add key="PricingHttp" value="http://www.newhartsystems.com/Pricing.htm" />
  13.         <add key="SupportUrl" value="https://www.newhartsystems.com/ASP/Support.aspx" />
  14.  
  15.         <add key="Blues2000Trial" value="ftp://72.10.208.29/Trials/Blues2000/setup.exe" />
  16.         <add key="Blues2003CliTrial" value="ftp://72.10.208.29/Trials/Blues2003Client/setup.exe" />
  17.         <add key="Blues2003DevTrial" value="ftp://72.10.208.29/Trials/Blues2003Developer/setup.exe" />
  18.         <add key="BluesVirtualHostTrial" value="ftp://72.10.208.29/Trials/BluesVirtualHost/setup.exe" />
  19.  
  20.     <add key="Blues2006CliTrial" value="ftp://72.10.208.29/Trials/Blues2006Client/setup.exe" />
  21.     <add key="Blues2006DevTrial" value="ftp://72.10.208.29/Trials/Blues2006Developer/setup.exe" />
  22.     <add key="Blues2006VirtualHostTrial" value="ftp://72.10.208.29/Trials/Blues2006VirtualHost/setup.exe" />
  23.     <add key="BluesMobile06Trial" value="ftp://72.10.208.29/Trials/BluesMobile06/setup.exe" />
  24.  
  25.  
  26.     <add key="HomeUrl" value="http://www.newhartsystems.com" />
  27.         <add key="ProductsUrl" value="http://www.newhartsystems.com/Products.htm" />
  28.         <add key="PricingUrl" value="http://www.newhartsystems.com/Pricing.htm" />
  29.         <add key="OrderUrl" value="https://www.newhartsystems.com/ASP/Default.aspx" />
  30.         <add key="SupportUrl" value="https://www.newhartsystems.com/ASP/Support.aspx" />
  31.         <add key="ContactUrl" value="http://www.newhartsystems.com/contact.htm" />
  32.  
  33.         <add key="EmailSupport" value="Support@newhartsystems.com" />
  34.  
  35.         <add key="SmtpServer" value="mail.ntcnet.com" />
  36.         <add key="EmailOrderTo" value="Orders@newhartsystems.com" />
  37.         <add key="EmailOrderFrom" value="Sales@newhartsystems.com" />
  38.         <add key="CompanyName" value="Newhart Systems Inc." />
  39.         <add key="DownloadEmailTo" value="Downloads@newhartsystems.com" />
  40.  
  41.     </appSettings>    
  42.   
  43.   <system.web>
  44.  
  45.     <!--  DYNAMIC DEBUG COMPILATION
  46.           Set compilation debug="true" to enable ASPX debugging.  Otherwise, setting this value to
  47.           false will improve runtime performance of this application. 
  48.           Set compilation debug="true" to insert debugging symbols (.pdb information)
  49.           into the compiled page. Because this creates a larger file that executes
  50.           more slowly, you should set this value to true only when debugging and to
  51.           false at all other times. For more information, refer to the documentation about
  52.           debugging ASP.NET files.
  53.     -->
  54.     <compilation 
  55.          defaultLanguage="c#"
  56.          debug="true"
  57.     />
  58.  
  59.     <!--  CUSTOM ERROR MESSAGES
  60.           Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. 
  61.           Add <error> tags for each of the errors you want to handle.
  62.  
  63.           "On" Always display custom (friendly) messages.
  64.           "Off" Always display detailed ASP.NET error information.
  65.           "RemoteOnly" Display custom (friendly) messages only to users not running 
  66.            on the local Web server. This setting is recommended for security purposes, so 
  67.            that you do not display application detail information to remote clients.
  68.     -->
  69.     <customErrors 
  70.     mode="Off" 
  71.     /> 
  72.  
  73.     <!--  AUTHENTICATION 
  74.           This section sets the authentication policies of the application. Possible modes are "Windows", 
  75.           "Forms", "Passport" and "None"
  76.  
  77.           "None" No authentication is performed. 
  78.           "Windows" IIS performs authentication (Basic, Digest, or Integrated Windows) according to 
  79.            its settings for the application. Anonymous access must be disabled in IIS. 
  80.           "Forms" You provide a custom form (Web page) for users to enter their credentials, and then 
  81.            you authenticate them in your application. A user credential token is stored in a cookie.
  82.           "Passport" Authentication is performed via a centralized authentication service provided
  83.            by Microsoft that offers a single logon and core profile services for member sites.
  84.     -->
  85.     <authentication mode="None" /> 
  86.  
  87.     <!--  AUTHORIZATION 
  88.           This section sets the authorization policies of the application. You can allow or deny access
  89.           to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous 
  90.           (unauthenticated) users.
  91.     -->
  92.  
  93.     <authorization>
  94.         <allow users="*" /> <!-- Allow all users -->
  95.             <!--  <allow     users="[comma separated list of users]"
  96.                              roles="[comma separated list of roles]"/>
  97.                   <deny      users="[comma separated list of users]"
  98.                              roles="[comma separated list of roles]"/>
  99.             -->
  100.     </authorization>
  101.  
  102.     <!--  APPLICATION-LEVEL TRACE LOGGING
  103.           Application-level tracing enables trace log output for every page within an application. 
  104.           Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
  105.           trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
  106.           application trace log by browsing the "trace.axd" page from your web application
  107.           root. 
  108.     -->
  109.     <trace
  110.         enabled="false"
  111.         requestLimit="10"
  112.         pageOutput="false"
  113.         traceMode="SortByTime"
  114.         localOnly="true"
  115.     />
  116.  
  117.     <!--  SESSION STATE SETTINGS
  118.           By default ASP.NET uses cookies to identify which requests belong to a particular session. 
  119.           If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
  120.           To disable cookies, set sessionState cookieless="true".
  121.     -->
  122.     <sessionState 
  123.             mode="InProc"
  124.             stateConnectionString="tcpip=127.0.0.1:42424"
  125.             sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
  126.             cookieless="false" 
  127.             timeout="2000" 
  128.     />
  129.  
  130.     <!--  GLOBALIZATION
  131.           This section sets the globalization settings of the application. 
  132.     -->
  133.     <globalization 
  134.             requestEncoding="utf-8" 
  135.             responseEncoding="utf-8" 
  136.    />
  137.   
  138.  
  139.    
  140.  </system.web>
  141.  
  142. </configuration>
  143.