Advertisement
Guest User

WEB.CONFIG

a guest
Jul 13th, 2010
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.98 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <configuration>
  3.     <appSettings>
  4.         <add key="root"/>
  5.     </appSettings>
  6.     <connectionStrings/>
  7.     <system.web>
  8.         <compilation debug="true">
  9.         </compilation>
  10.         <customErrors mode="Off"/>
  11.         <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
  12.             <error statusCode="403" redirect="NoAccess.htm" />
  13.             <error statusCode="404" redirect="FileNotFound.htm" />
  14.         </customErrors>
  15.         -->
  16.     </system.web>
  17.     <system.serviceModel>
  18.         <behaviors>
  19.             <serviceBehaviors>
  20.                 <behavior>
  21.                     <serviceMetadata httpGetEnabled="true"/>
  22.                     <serviceDebug includeExceptionDetailInFaults="false"/>
  23.                 </behavior>
  24.             </serviceBehaviors>
  25.         </behaviors>
  26.         <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
  27.     </system.serviceModel>
  28.     <system.codedom>
  29.     </system.codedom>
  30. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement