Web.config 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. http://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <configSections>
  8. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  9. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  10. <section name="fileUploadConfig" type="EMIS.ViewModel.FileUploadConfig, EMIS.ViewModel"/>
  11. </configSections>
  12. <connectionStrings>
  13. <!--普教开发环境-->
  14. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EMISDEVELOP;Initial Catalog=EMISDEVELOP;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  15. <!--成教开发环境-->
  16. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.29\sql2008;Initial Catalog=ssEMISNewDGLG1128;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  17. <!--松山测试环境-->
  18. <add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EMISGDSS;Initial Catalog=Gdss.Emis;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />
  19. <!--广体测试环境-->
  20. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EmisGzty;Initial Catalog=Gzty.Emis;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  21. <!--广中医测试环境-->
  22. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66,1439;Initial Catalog=Gzzy.Emis;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  23. <!--工大测试环境-->
  24. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EMISHBGD;Initial Catalog=Hbgd.Emis;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  25. <!--科大测试环境-->
  26. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EMISHBKD;Initial Catalog=Hbkd.Emis;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  27. <!--临沧农校测试环境-->
  28. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EMISLCNX;Initial Catalog=LCNX.Emis;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  29. <!--<add name="HRServiceContextContainer" providerName="System.Data.SqlClient" connectionString="Data Source=39.98.145.11;Initial Catalog=Emis.HRService;Persist Security Info=True;User ID=sa;Password=Bow1nSql2008;Pooling=True;Max Pool Size=10000;" />
  30. <add name="EMISNewLogContext" providerName="System.Data.SqlClient" connectionString="Data Source=39.98.145.11;Initial Catalog=Gdss.EmisLog;Persist Security Info=True;User ID=sa;Password=Bow1nSql2008;Pooling=True;Max Pool Size=10000;" />-->
  31. <!--本地测试环境-->
  32. <!--<add name="EMISNewContext" providerName="System.Data.SqlClient" connectionString="Data Source=.;Initial Catalog=Hbgd.Emis;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />-->
  33. <add name="HRServiceContextContainer" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EMISGDSS;Initial Catalog=Emis.HRService;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />
  34. <add name="EMISNewLogContext" providerName="System.Data.SqlClient" connectionString="Data Source=192.168.0.66\EMISGDSS;Initial Catalog=Gdss.EmisLog;Persist Security Info=True;User ID=sa;Password=1;Pooling=True;Max Pool Size=10000;" />
  35. </connectionStrings>
  36. <appSettings>
  37. <!--MVC组件配置begin-->
  38. <add key="webpages:Version" value="2.0.0.0" />
  39. <add key="webpages:Enabled" value="false" />
  40. <add key="PreserveLoginUrl" value="true" />
  41. <add key="ClientValidationEnabled" value="true" />
  42. <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  43. <!--MVC组件配置end-->
  44. <!--登录信息cookies名配置begin-->
  45. <add key="logincookieName" value="EMIS_NewLogin" />
  46. <!--登录信息cookies名配置end-->
  47. <!--登录信息容器配置begin-->
  48. <add key="CustomPrincipanAssembly" value="EMIS.Utility" />
  49. <add key="CustomPrincipanClass" value="EMIS.Utility.FormValidate.CustomPrincipal" />
  50. <!--登录信息容器配置end-->
  51. <!--工作流接口账号密码配置begin-->
  52. <add key="sys_InsertingID" value="79972b0d414d44bd86d816d90114e79f" />
  53. <add key="sys_InsertingPwd" value="53BF01E20E464120B2A94543312C0F34" />
  54. <!--工作流接口账号密码配置end-->
  55. <!--上传文件路径配置begin-->
  56. <add key="FileUploadPath" value="~/Content/DownFile" />
  57. <!--上传文件路径配置begin-->
  58. <!--系统发件邮箱配置begin-->
  59. <add key="Mail_SMTPServer" value="smtp.qq.com" />
  60. <add key="Mail_SMTPPort" value="25" />
  61. <add key="Mail_SMTPIsSSL" value="false" />
  62. <add key="Mail_Pop3Server" value="pop.qq.com" />
  63. <add key="Mail_Pop3Port" value="110" />
  64. <add key="Mail_Pop3IsSSL" value="false" />
  65. <add key="Mail_UserName" value="123433455" />
  66. <add key="Mail_Password" value="hpjcyfgjrlgebhji" />
  67. <!--系统发件邮箱配置end-->
  68. <!--7Zip压缩/解压缩工具位置配置begin-->
  69. <add key="PathOf7Zip" value="bin\7z.exe" />
  70. <!--7Zip压缩/解压缩工具位置配置end-->
  71. <!--导入文件的储存地址、虚拟目录配置begin-->
  72. <add key="ImportFileVirtualFolder" value="/Content/DownFile/" />
  73. <!--导入文件的储存地址、虚拟目录配置end-->
  74. <!--配置是否自动关闭排课功能(0表示打开,1表示关闭)begin-->
  75. <add key="IsCloseSchedulingManage" value="0" />
  76. <!--配置是否自动关闭排课功能(0表示打开,1表示关闭)end-->
  77. <!--配置登出系统后的跳转地址begin-->
  78. <!--通用-->
  79. <!--<add key="LogOffUrl" value="~/Account/Login" />-->
  80. <!--广中医-->
  81. <!--<add key="LogOffUrl" value="~/Account/GZZYLogin" />
  82. <add key="LoginAction" value="GZZYLogin" />-->
  83. <!--河北工大-->
  84. <add key="LogOffUrl" value="~/Account/HBGDLogin" />
  85. <add key="LoginAction" value="HBGDLogin" />
  86. <!--河北科大-->
  87. <!--<add key="LogOffUrl" value="~/Account/NewLogin" />
  88. <add key="LoginAction" value="NewLogin" />-->
  89. <!--配置登出系统后的跳转地址end-->
  90. <!--单点登录配置,各高校有所不同(0表示关闭,1表示打开)begin-->
  91. <add key="IsSSOLogin" value="0" />
  92. <add key="SSOHost" value="https://cas.gdsspt.edu.cn/" />
  93. <add key="SSOAPPID" value="#"/>
  94. <add key="SSOSecret" value="#"/>
  95. <!--单点登录配置end-->
  96. <!--报表服务器配置begin-->
  97. <!--普教开发环境-->
  98. <!--<add key="ReportServerUrl" value="http://192.168.0.66:8921/reportserver" />
  99. <add key="ReportServerUser" value="administrator" />
  100. <add key="ReportServerPass" value="Bow1n" />-->
  101. <!--成教开发环境-->
  102. <!--<add key="ReportServerUrl" value="http://192.168.0.29/reportserver" />
  103. <add key="ReportServerUser" value="administrator" />
  104. <add key="ReportServerPass" value="Bow1n" />-->
  105. <!--本地测试环境-->
  106. <add key="ReportServerUrl" value="http://localhost:8014/ReportServer" />
  107. <add key="ReportServerUser" value="Windows" />
  108. <add key="ReportServerPass" value="890217" />
  109. <!--松山开发环境-->
  110. <!--<add key="ReportServerUrl" value="http://192.168.0.66:8201/reportserver" />
  111. <add key="ReportServerUser" value="administrator" />
  112. <add key="ReportServerPass" value="Bow1n" />-->
  113. <!--广体开发环境-->
  114. <!--<add key="ReportServerUrl" value="http://192.168.0.66:8202/reportserver" />
  115. <add key="ReportServerUser" value="administrator" />
  116. <add key="ReportServerPass" value="Bow1n" />-->
  117. <!--广中医开发环境-->
  118. <!--<add key="ReportServerUrl" value="http://192.168.0.66:8206/reportserver" />
  119. <add key="ReportServerUser" value="administrator" />
  120. <add key="ReportServerPass" value="Bow1n" />-->
  121. <!--工大开发环境-->
  122. <!--<add key="ReportServerUrl" value="http://192.168.0.66:8204/reportserver" />
  123. <add key="ReportServerUser" value="administrator" />
  124. <add key="ReportServerPass" value="Bow1n" />-->
  125. <!--科大开发环境-->
  126. <!--<add key="ReportServerUrl" value="http://192.168.0.66:8203/reportserver" />
  127. <add key="ReportServerUser" value="administrator" />
  128. <add key="ReportServerPass" value="Bow1n" />-->
  129. <!--临沧农校开发环境-->
  130. <!--<add key="ReportServerUrl" value="http://192.168.0.66:8207/reportserver" />
  131. <add key="ReportServerUser" value="administrator" />
  132. <add key="ReportServerPass" value="Bow1n" />-->
  133. <!--报表服务器配置end-->
  134. <!--毕业日期配置begin-->
  135. <!--月(春季、上学期入学月)-->
  136. <add key="PlanningGraduateDateSpringMonth" value="1"/>
  137. <!--日(春季、上学期入学日)-->
  138. <add key="PlanningGraduateDateSpringDay" value="30"/>
  139. <!--月(秋季、下学期入学月)-->
  140. <add key="PlanningGraduateDateAutumnMonth" value="6"/>
  141. <!--日(秋季、下学期入学日)-->
  142. <add key="PlanningGraduateDateAutumnDay" value="30"/>
  143. <!--毕业日期配置end-->
  144. <!--入学学期配置begin(1表示春季、上学期,2表示秋季、下学期)-->
  145. <add key="EntranceSemesterID" value="1"/>
  146. <!--入学学期配置end-->
  147. <!--教学任务提交控制begin(0表示控制,1表示不控制)-->
  148. <add key="MissionClassCanSubmitNoTeacher" value="0"/>
  149. <!--教学任务提交控制eng-->
  150. <!--学号总位数配置begin-->
  151. <add key="LoginIDTotal" value="15"/>
  152. <!--学号总位数配置end-->
  153. </appSettings>
  154. <system.web>
  155. <httpRuntime maxRequestLength="999999999" maxQueryStringLength="102400" requestPathInvalidCharacters="" />
  156. <httpModules>
  157. <add name="VerificationCodeModule" type="Bowin.Common.VerificationCodeModule,Bowin.Common" />
  158. </httpModules>
  159. <httpHandlers>
  160. <add verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  161. </httpHandlers>
  162. <customErrors mode="Off" defaultRedirect="Error" />
  163. <compilation debug="true" targetFramework="4.0">
  164. <buildProviders>
  165. <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  166. </buildProviders>
  167. </compilation>
  168. <authentication mode="Forms">
  169. <!--配置登入系统后的跳转地址begin-->
  170. <!--通用-->
  171. <!--<forms loginUrl="~/Account/Login" timeout="2880" enableCrossAppRedirects="true" />-->
  172. <!--广中医-->
  173. <!--<forms loginUrl="~/Account/GZZYLogin" timeout="2880" enableCrossAppRedirects="true" />-->
  174. <!--河北工大-->
  175. <forms loginUrl="~/Account/HBGDLogin" timeout="2880" enableCrossAppRedirects="true" />
  176. <!--河北科大-->
  177. <!--<forms loginUrl="~/Account/NewLogin" timeout="2880" enableCrossAppRedirects="true" />-->
  178. <!--配置登入系统后的跳转地址end-->
  179. </authentication>
  180. <pages>
  181. <namespaces>
  182. <add namespace="System.Web.Helpers" />
  183. <add namespace="System.Web.Mvc" />
  184. <add namespace="System.Web.Mvc.Ajax" />
  185. <add namespace="System.Web.Mvc.Html" />
  186. <add namespace="System.Web.Optimization" />
  187. <add namespace="System.Web.Routing" />
  188. <add namespace="System.Web.WebPages" />
  189. </namespaces>
  190. </pages>
  191. <trust level="Full" originUrl="" />
  192. <!--<caching>
  193. <outputCacheSettings>
  194. <outputCacheProfiles>
  195. <add name="PublicOnly" duration="3600" location="Client"/>
  196. </outputCacheProfiles>
  197. </outputCacheSettings>
  198. </caching>-->
  199. <!--<sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" />-->
  200. </system.web>
  201. <system.web.extensions>
  202. <scripting>
  203. <webServices>
  204. <jsonSerialization maxJsonLength="500000000" />
  205. </webServices>
  206. </scripting>
  207. </system.web.extensions>
  208. <location path="Content">
  209. <system.webServer>
  210. <staticContent>
  211. <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="1.02:00:00" />
  212. <remove fileExtension=".zip" />
  213. <remove fileExtension=".rar" />
  214. <mimeMap fileExtension=".zip" mimeType="application/zip" />
  215. <mimeMap fileExtension=".rar" mimeType="application/octet-stream" />
  216. </staticContent>
  217. </system.webServer>
  218. </location>
  219. <location path="Scripts">
  220. <system.webServer>
  221. <staticContent>
  222. <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="1.02:00:00" />
  223. </staticContent>
  224. </system.webServer>
  225. </location>
  226. <system.webServer>
  227. <validation validateIntegratedModeConfiguration="false" />
  228. <modules runAllManagedModulesForAllRequests="true">
  229. <add name="VerificationCodeModule" type="Bowin.Common.VerificationCodeModule,Bowin.Common" />
  230. </modules>
  231. <handlers>
  232. <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
  233. <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
  234. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  235. <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
  236. <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
  237. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  238. <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  239. </handlers>
  240. <httpProtocol>
  241. <customHeaders>
  242. <clear />
  243. <add name="X-UA-Compatible" value="IE=8" />
  244. <add name="Access-Control-Allow-Methods" value="POST"/>
  245. <add name="Access-Control-Allow-Headers" value="x-requested-with"/>
  246. <add name="Access-Control-Allow-Origin" value="*" />
  247. </customHeaders>
  248. </httpProtocol>
  249. <security>
  250. <requestFiltering>
  251. <requestLimits maxAllowedContentLength="2147483648" maxQueryString="2147483648"></requestLimits>
  252. </requestFiltering>
  253. </security>
  254. </system.webServer>
  255. <runtime>
  256. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  257. <dependentAssembly>
  258. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  259. <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
  260. </dependentAssembly>
  261. <dependentAssembly>
  262. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  263. <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
  264. </dependentAssembly>
  265. <dependentAssembly>
  266. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  267. <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
  268. </dependentAssembly>
  269. <dependentAssembly>
  270. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  271. <bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
  272. </dependentAssembly>
  273. </assemblyBinding>
  274. </runtime>
  275. <entityFramework>
  276. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  277. <parameters>
  278. <parameter value="v11.0" />
  279. </parameters>
  280. </defaultConnectionFactory>
  281. <providers>
  282. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  283. </providers>
  284. </entityFramework>
  285. <fileUploadConfig>
  286. <add name="EMIS.CommonLogic.DQPSystem.SOCTemplateServices" value="SOCTemplateDetailAttachment" />
  287. <add name="EMIS.CommonLogic.DQPSystem.SOCDetailScoreServices" value="SOCDetailAttachment" />
  288. <add name="EMIS.CommonLogic.DQPSystem.SOCServices" value="SOCAttachment" />
  289. <add name="EMIS.CommonLogic.ScoreManage.ScoreConvertByApplyServices" value="ScoreConvertByApplyAttachment" />
  290. <add name="EMIS.CommonLogic.SupervisionManage.ProjectRecordServices" value="ProjectRecordAttachment" />
  291. <!--毕业去向-->
  292. <add name="EMIS.CommonLogic.GraduationManage.GraduateCardManage.GraduateCardApplyServices" value="GraduateCardApplyAttachment" />
  293. </fileUploadConfig>
  294. <system.serviceModel>
  295. <behaviors>
  296. <serviceBehaviors>
  297. <behavior name="">
  298. <serviceMetadata httpGetEnabled="true" />
  299. <serviceDebug includeExceptionDetailInFaults="false" />
  300. <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
  301. </behavior>
  302. </serviceBehaviors>
  303. <endpointBehaviors>
  304. <behavior>
  305. <webHttp helpEnabled="True"/>
  306. </behavior>
  307. <behavior name="clientBehavior">
  308. </behavior>
  309. </endpointBehaviors>
  310. </behaviors>
  311. <protocolMapping>
  312. <add binding="webHttpBinding" scheme="http" />
  313. </protocolMapping>
  314. <serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="false"/>
  315. <bindings>
  316. <customBinding>
  317. <binding name="customBinding">
  318. <binaryMessageEncoding>
  319. <readerQuotas maxArrayLength="2147483647" maxStringContentLength="2147483647" maxDepth="64"/>
  320. </binaryMessageEncoding>
  321. <httpTransport maxReceivedMessageSize="2147483647">
  322. </httpTransport>
  323. </binding>
  324. </customBinding>
  325. <basicHttpBinding>
  326. <binding name="entreeSoap" textEncoding="utf-8" maxReceivedMessageSize="2147483647" openTimeout="01:00:00" closeTimeout="01:00:00" receiveTimeout="01:00:00" sendTimeout="01:00:00" >
  327. <readerQuotas maxArrayLength="2147483647" maxStringContentLength="2147483647" maxDepth="64"/>
  328. </binding>
  329. </basicHttpBinding>
  330. </bindings>
  331. <client>
  332. <!--工作流地址接入地址配置begin-->
  333. <!--普教开发环境-->
  334. <!--<endpoint address="http://192.168.0.66:8911/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  335. <!--成教开发环境-->
  336. <!--<endpoint address="http://192.168.0.28:8014/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  337. <!--本地测试环境-->
  338. <endpoint address="http://localhost:8013/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />
  339. <!--松山测试环境-->
  340. <!--<endpoint address="http://192.168.0.66:8101/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  341. <!--广体测试环境-->
  342. <!--<endpoint address="http://192.168.0.66:8102/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  343. <!--广中医测试环境-->
  344. <!--<endpoint address="http://192.168.0.66:8106/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  345. <!--工大测试环境-->
  346. <!--<endpoint address="http://192.168.0.66:8103/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  347. <!--科大测试环境-->
  348. <!--<endpoint address="http://192.168.0.66:8103/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  349. <!--临沧农校测试环境-->
  350. <!--<endpoint address="http://192.168.0.66:8103/entree.asmx" binding="basicHttpBinding" behaviorConfiguration="clientBehavior" bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap" name="entreeSoap" />-->
  351. <!--工作流地址接入地址配置end-->
  352. </client>
  353. </system.serviceModel>
  354. </configuration>