| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0"?>
- <configuration>
- <configSections>
- <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
- </configSections>
- <appSettings>
- <add key="Configpath" value="~/XmlConfig/webset.config"/>
- <add key="chinaUnicom" value="130,131,132,155,156,185,186"/>
- <!--联通-->
- <add key="chinaMobile1" value="134,135,136,137,138,139,150,151,152,158,159,157,187,188,147,183"/>
- <!--移动-->
- <!--<add key="strCoon" value="Data Source=MARTIN\MSSQLSERVER2;Initial Catalog=JAn_CallCenter;User ID=sa;Password=hykj"/>-->
- <add key="strCoonOracle" value="Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.8.3)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)));User Id=scott;Password=800100;Pooling=true;Min Pool Size=1;Max Pool Size=255;"/>
- <!-- <add key="strCoonOracle" value="Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.19.91)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)));User Id=hjzx;Password=hjzx;Pooling=true;Min Pool Size=1;Max Pool Size=255;"/> -->
- <!--<add key="strCoonOracle" value="Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.89)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)));User Id=hjzx;Password=hykj800100;Pooling=true;Min Pool Size=1;Max Pool Size=255;"/>-->
- <!--oracle-->
- </appSettings>
- <connectionStrings/>
- <system.web>
- <compilation debug="true" targetFramework="4.0"/>
- <!--
- 通过 <authentication> 节,可配置
- ASP.NET 用于识别进入用户的
- 安全身份验证模式。
- -->
- <authentication mode="Windows"/>
- <!--
- 通过 <customErrors> 节,可以配置
- 在执行请求的过程中出现未处理的错误时要执行
- 的操作。具体而言,
- 开发人员通过该节可配置要显示的 html 错误页,
- 以代替错误堆栈跟踪。
- <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
- <error statusCode="403" redirect="NoAccess.htm" />
- <error statusCode="404" redirect="FileNotFound.htm" />
- </customErrors>
- -->
- <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
-
- </system.web>
- <!--
- system.webServer 节是在 Internet Information Services 7.0 下运行 ASP.NET AJAX
- 所必需的。对于早期版本的 IIS,不必保留此节。
- -->
- <system.webServer>
- <handlers>
- <add name="AjaxPro_AjaxHandlerFactory" preCondition="integratedMode" verb="*" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2" />
- <!--<add name="ajax" verb="POST,GET" path="ajaxpro/*.ashx" type="Ajax.PageHandlerFactory, AjaxPro.2"/>-->
- </handlers>
- </system.webServer>
- <system.data>
- <DbProviderFactories>
- <remove invariant="Oracle.ManagedDataAccess.Client"/>
- <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
- </DbProviderFactories>
- </system.data>
- <runtime>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly>
- <publisherPolicy apply="no"/>
- <assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral"/>
- </dependentAssembly>
- </assemblyBinding>
- </runtime>
- <oracle.manageddataaccess.client>
- <version number="*">
- <dataSources>
- <dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) "/>
- </dataSources>
- </version>
- </oracle.manageddataaccess.client>
- </configuration>
|