root/trunk/eCard/Platnosci/Web.Config @ 881

Wersja 477, 7.2 KB (wprowadzona przez marek, 17 years temu)

re #139

Line 
1<?xml version="1.0"?>
2<configuration>
3        <configSections>
4                <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
5                        <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
6                                <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
7                                <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
8                                        <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"/>
9                                        <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
10                                        <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
11                                </sectionGroup>
12                        </sectionGroup>
13                </sectionGroup>
14        </configSections>
15        <appSettings/>
16        <connectionStrings>
17                <add name="BazaReklamConn" connectionString="SERVER=10.0.0.21;DATABASE=BAZA_REKLAM;UID=wwwadmin;PWD=adm1648;" providerName="System.Data.SqlClient"/>
18        </connectionStrings>
19        <system.web>
20                <pages>
21                        <controls>
22                                <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
23                        </controls>
24                </pages>
25                <!--
26          Set compilation debug="true" to insert debugging
27          symbols into the compiled page. Because this
28          affects performance, set this value to true only
29          during development.
30    -->
31                <compilation debug="true">
32                        <assemblies>
33                                <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
34                                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
35                                <add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies>
36                </compilation>
37                <!--
38            The <authentication> section enables configuration
39            of the security authentication mode used by
40            ASP.NET to identify an incoming user.
41     -->
42                <authentication mode="Forms">
43                        <forms loginUrl="login.aspx" defaultUrl="platnosc.aspx"/>
44                </authentication>
45                <authorization>
46                        <deny users="?"/>
47                </authorization>
48                <!--
49   
50                The <customErrors> section enables configuration
51            of what to do if/when an unhandled error occurs
52            during the execution of a request. Specifically,
53            it enables developers to configure html error pages
54            to be displayed in place of a error stack trace.
55
56        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
57            <error statusCode="403" redirect="NoAccess.htm" />
58            <error statusCode="404" redirect="FileNotFound.htm" />
59        </customErrors>
60         -->
61                <customErrors mode="RemoteOnly" defaultRedirect="Error.aspx">
62                </customErrors>
63                <!-- Ustawinia kultur -->
64                <globalization culture="auto" uiCulture="auto"/>
65                <httpHandlers>
66                        <remove verb="*" path="*.asmx"/>
67                        <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
68                        <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"/>
69                        <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"/>
70                </httpHandlers>
71                <httpModules>
72                        <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
73                </httpModules>
74        </system.web>
75        <system.web.extensions>
76                <scripting>
77                        <webServices>
78                                <!-- Uncomment this line to customize maxJsonLength and add a custom converter -->
79                                <!--
80      <jsonSerialization maxJsonLength="500">
81        <converters>
82          <add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>
83        </converters>
84      </jsonSerialization>
85      -->
86                                <!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. -->
87                                <!--
88        <authenticationService enabled="true" requireSSL = "true|false"/>
89      -->
90                                <!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved
91           and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and
92           writeAccessProperties attributes. -->
93                                <!--
94      <profileService enabled="true"
95                      readAccessProperties="propertyname1,propertyname2"
96                      writeAccessProperties="propertyname1,propertyname2" />
97      -->
98                        </webServices>
99                        <!--
100      <scriptResourceHandler enableCompression="true" enableCaching="true" />
101      -->
102                </scripting>
103        </system.web.extensions>
104        <system.webServer>
105                <validation validateIntegratedModeConfiguration="false"/>
106                <modules>
107                        <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
108                </modules>
109                <handlers>
110                        <remove name="WebServiceHandlerFactory-Integrated"/>
111                        <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"/>
112                        <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"/>
113                        <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"/>
114                </handlers>
115        </system.webServer>
116</configuration>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.