zoukankan      html  css  js  c++  java
  • EAS使用中FineUI的配置

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <configSections>
        <section name="eas" type="EAS.ConfigHandler,EAS.MicroKernel" />
        <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
      </configSections>
      <eas>
        <configurations>
          <item name="Key" value="Value" />
        </configurations>
        <objects>
          <object name="DbProvider" assembly="EAS.Data.Provider" type="EAS.Data.Access.OracleProvider" LifestyleType="Thread">
            <property name="ConnectionString" type="string" value="Data Source=M;User Id=m;Password=sa;Integrated Security=No" />
          </object>
          <!--数据访问器-->
          <object name="DataAccessor" assembly="EAS.Data" type="EAS.Data.Access.DataAccessor" LifestyleType="Thread">
            <property name="DbProvider" type="object" value="DbProvider"/>
            <property name="Language" type="object" value="PLSqlLanguage"/>
          </object>
          <!--ORM访问器-->
          <object name="OrmAccessor" assembly="EAS.Data" type="EAS.Data.ORM.OrmAccessor" LifestyleType="Thread">
            <property name="DataAccessor" type="object" value="DataAccessor"/>
            <!--<property name="DataNotifier" type="object" value="DataNotifier"/>-->
          </object>
          <!--数据通知程序-->
          <!--<object name="DataNotifier" assembly="EAS.Data" type="EAS.Data.ORM.SocketBusDataNotifier" LifestyleType="Singleton">
            <property name="MessageBus" type="object" value="MessageBus"/>
          </object>-->
          <!--消息总线-->
          <!--<object name="MessageBus" assembly="EAS.MicroKernel" type="EAS.Sockets.Bus.SocketBus" LifestyleType="Singleton">
            <property name="Url" type="string" value="socket.tcp://127.0.0.1:6606/"/>
          </object>-->
          <!--查询语言-->
          <object name="PLSqlLanguage" assembly="EAS.Data.Provider" type="EAS.Data.Linq.PLSqlLanguage" LifestyleType="Thread"/>
          <!--直连服务桥-->
          <object name="ServiceBridger" assembly="EAS.MicroKernel" type="EAS.Services.DirectServiceBridger" LifestyleType="Singleton" >
            <property name="AutoLoad" type="bool" value="true"/>
          </object>-->
          <!--日志管理-->
          <object name="Logger" assembly="EAS.MicroKernel" type="EAS.Loggers.TextLogger" LifestyleType="Singleton" />
          <!--缓存访问器、旧版兼容-->
          <object name="CacheAccessor" assembly="EAS.Data" type="EAS.Data.ORM.CacheAccessor" LifestyleType="Singleton" />
        </objects>
      </eas>
    
      <FineUI DebugMode="true" />
      <system.web>
        <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
          <controls>
            <add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
          </controls>
        </pages>
        <httpModules>
          <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI" />
        </httpModules>
        <compilation debug="true" targetFramework="4.0" />
        <customErrors mode="Off" />
        <authentication mode="Forms">
          <forms name=".FORMS_AUTH" loginUrl="~/default.aspx" timeout="120" defaultUrl="~/main.aspx" protection="All" path="/" />
        </authentication>
        <authorization>
          <deny users="?" />
        </authorization>
      </system.web>
      <location path="icon">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="res">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="extjs">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
    </configuration>
  • 相关阅读:
    关于联想笔记本ThinkPad E470 没有外音 插耳机却有声音的解决办法
    Win10无法启动软件提示MSVCP110.dll丢失
    POJ-3984 迷宫问题(BFS找最短路径并保存)
    转圈游戏(简单的快速幂)
    统计一个整数的二进制中1的个数(暴力)
    手写哈希(实现简单的加数、查询)
    CodeForces
    L2-2 社交集群 (25 分)(一个写挫的并查集)
    7-4 交换二叉树中每个结点的左孩子和右孩子 (20 分)
    7-3 堆中的路径 (25 分)
  • 原文地址:https://www.cnblogs.com/docomo/p/3732187.html
Copyright © 2011-2022 走看看