2024-07-18 14:51:16 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<!--
|
|
|
|
|
有关如何配置 ASP.NET 应用程序的详细消息,请访问
|
|
|
|
|
|
|
|
|
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
|
|
|
|
-->
|
|
|
|
|
<configuration>
|
|
|
|
|
<configSections>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<section name="FineUIPro" type="FineUIPro.ConfigSection, FineUIPro" requirePermission="false" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</configSections>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<FineUIPro DebugMode="false" Theme="Cupertino" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<appSettings>
|
|
|
|
|
<!--连接字符串-->
|
2024-07-18 16:26:44 +08:00
|
|
|
|
<add key="ConnectionString" value="Server=.\sql2016;Database=HJGLDB_NEW;Integrated Security=False;User ID=sa;Password=1111;MultipleActiveResultSets=true;Max Pool Size = 1000;Connect Timeout=1200" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<!--系统名称-->
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add key="SystemName" value="诺必达焊接管理系统" />
|
|
|
|
|
<add key="ChartImageHandler" value="storage=file;timeout=20;url=~/Images/;" />
|
|
|
|
|
<add key="aspnet:MaxHttpCollectionKeys" value="50000" />
|
|
|
|
|
<add key="SystemVersion" value="SGGLPackFile_V2017-03-30-001" />
|
|
|
|
|
<add key="ADomainUrl" value="10.151.130.1" />
|
|
|
|
|
<add key="APPUrl" value="https://www.pgyer.com/pWSd" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<!--系统:焊接管理为:HJGL,焊材管理:HJCLGL-->
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add key="SystemCode" value="HJCLGL" />
|
|
|
|
|
<add key="http" value="http://localhost/test/" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</appSettings>
|
|
|
|
|
<system.web>
|
|
|
|
|
<!-- 会话状态设置 默认情况下,ASP.NET 使用 Cookie 来标识哪些请求属于特定的会话。如果 Cookie 不可用,则可以通过将会话标识符添加到 URL 来跟踪会话。若要禁用 Cookie,请设置 sessionState cookieless="true" -->
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<sessionState mode="InProc" cookieless="UseCookies" timeout="1200" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<!--<processModel enable="true" requestQueueLimit="100000"/>-->
|
|
|
|
|
<pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
|
|
|
|
|
<controls>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add tagPrefix="f" namespace="FineUIPro" assembly="FineUIPro" />
|
|
|
|
|
<add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</controls>
|
|
|
|
|
</pages>
|
|
|
|
|
<httpModules>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add name="FineUIProScriptModule" type="FineUIPro.ScriptModule, FineUIPro" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</httpModules>
|
|
|
|
|
<httpHandlers>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" validate="false" />
|
|
|
|
|
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</httpHandlers>
|
|
|
|
|
<compilation debug="true" targetFramework="4.0">
|
|
|
|
|
<assemblies>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</assemblies>
|
|
|
|
|
</compilation>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<httpRuntime requestValidationMode="2.0" maxRequestLength="999999999" maxQueryStringLength="2097151" executionTimeout="36000" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<authentication mode="Forms">
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<forms loginUrl="Login.aspx" name="PUBLISHERCOOKIE" protection="All" timeout="1440" path="/" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</authentication>
|
|
|
|
|
<membership>
|
|
|
|
|
<providers>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<clear />
|
|
|
|
|
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</providers>
|
|
|
|
|
</membership>
|
|
|
|
|
<profile>
|
|
|
|
|
<providers>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<clear />
|
|
|
|
|
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</providers>
|
|
|
|
|
</profile>
|
|
|
|
|
<roleManager enabled="false">
|
|
|
|
|
<providers>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<clear />
|
|
|
|
|
<add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
|
|
|
|
<add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</providers>
|
|
|
|
|
</roleManager>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<customErrors mode="RemoteOnly" defaultRedirect="LogOff.aspx" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<webServices>
|
|
|
|
|
<protocols>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add name="HttpSoap" />
|
|
|
|
|
<add name="HttpPost" />
|
|
|
|
|
<add name="HttpGet" />
|
|
|
|
|
<add name="Documentation" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</protocols>
|
|
|
|
|
</webServices>
|
|
|
|
|
</system.web>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<location path="res.axd" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<system.webServer>
|
|
|
|
|
<staticContent>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<mimeMap fileExtension=".dat" mimeType="application/ChinaExcel Report File" />
|
|
|
|
|
<mimeMap fileExtension=".tab" mimeType="application/ChinaExcel Report File" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</staticContent>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<validation validateIntegratedModeConfiguration="false" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<modules runAllManagedModulesForAllRequests="true">
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add name="FineUIProScriptModule" type="FineUIPro.ScriptModule, FineUIPro" />
|
|
|
|
|
<remove name="ScriptModule" />
|
|
|
|
|
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</modules>
|
|
|
|
|
<handlers>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<remove name="ChartImageHandler" />
|
|
|
|
|
<add name="FineUIProResourceHandler" verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" />
|
|
|
|
|
<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</handlers>
|
|
|
|
|
<defaultDocument>
|
|
|
|
|
<files>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<add value="Login.aspx" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</files>
|
|
|
|
|
</defaultDocument>
|
|
|
|
|
<security>
|
|
|
|
|
<requestFiltering>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<requestLimits maxAllowedContentLength="2147483647" maxQueryString="2147483647" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</requestFiltering>
|
|
|
|
|
</security>
|
|
|
|
|
</system.webServer>
|
|
|
|
|
<!-- SERVER -->
|
|
|
|
|
<system.serviceModel>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
<services>
|
|
|
|
|
<service name="BLL.OpenService.HSSEService" behaviorConfiguration="HSSEServiceBehavior">
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<endpoint address="" binding="wsHttpBinding" bindingConfiguration="HSSEServiceBinding" name="HSSEServiceEndpoint" contract="BLL.OpenService.IHSSEService" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</service>
|
|
|
|
|
</services>
|
|
|
|
|
<behaviors>
|
|
|
|
|
<serviceBehaviors>
|
|
|
|
|
<behavior name="HSSEServiceBehavior">
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<serviceMetadata httpGetEnabled="true" />
|
|
|
|
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
|
|
|
|
<serviceThrottling maxConcurrentCalls="2147483647" maxConcurrentInstances="2147483647" maxConcurrentSessions="2147483647" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</behavior>
|
|
|
|
|
</serviceBehaviors>
|
|
|
|
|
</behaviors>
|
|
|
|
|
<bindings>
|
|
|
|
|
<wsHttpBinding>
|
|
|
|
|
<binding name="HSSEServiceBinding" maxReceivedMessageSize="2147483647" useDefaultWebProxy="false" maxBufferPoolSize="2147483647" closeTimeout="20:00:00" openTimeout="00:01:10" receiveTimeout="20:00:00" sendTimeout="20:00:00">
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="409600" maxNameTableCharCount="2147483647" />
|
|
|
|
|
<security mode="None" />
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</binding>
|
|
|
|
|
</wsHttpBinding>
|
|
|
|
|
</bindings>
|
|
|
|
|
</system.serviceModel>
|
2024-07-18 14:51:16 +08:00
|
|
|
|
<runtime>
|
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
</assemblyBinding>
|
|
|
|
|
</runtime>
|
2024-05-08 17:17:11 +08:00
|
|
|
|
</configuration>
|