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