Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Issue when using <mail> with CLOB fields

    Hi Isomorphic,

    could you test if sending out mails via an ds.xml operationBinding with a mail-tag works for you for a text-field of length="10000" and CLOB type in Oracle 11.2 (with ojdbc6.jar)?
    I access it with normal $FIELDNAME in the used html template. The value in the received mail then is "oracle.jdbc.driver.OracleClobReader@19a53ce6".

    Showing the field in a ListGrid works as expected. Sending non-CLOB fields works as expected as well.

    This happens using current 5.1p.

    Thank you & Best regards
    Blama

    #2
    Do you have an explicit type="text" on this field? Because if type is unspecified or the field is implicit (autoDeriveSchema) then you would expect to find a CLOB in DSResponse.data.

    Comment


      #3
      Hi Isomorphic,

      this is the field definition:
      Code:
              <field name="MAIL_CONTENT" length="100000" type="text" escapeHTML="true">
                  <title><fmt:message key="mailContent" /></title>
              </field>

      Comment


        #4
        This is fixed and will be available for download in nightly builds since Mar 25 (tomorrow).

        Comment


          #5
          Hi Isomorphic,

          it seems to me that this one is not fixed using v10.1p_2016-04-12. Is this working for you?

          Thank you & Best regards
          Blama

          Comment


            #6
            Yes, it is working for us. Could you be more specific about what's wrong? Thanks

            Comment


              #7
              Hi Isomorphic,

              I was able to reproduce in builtInDS (v10.1p_2016-04-18). I won't post the whole testcase as it boils down to this:
              I'm using the field in my html-template like this:
              Code:
                                  <tr>
                                      <td>description_clob</td>
                                      <td>$esc.html($description_clob)</td>
                                  </tr>
              The $esc is injected like this:
              Code:
              package com.smartgwt.sample.server.listener;
              
              import org.apache.velocity.tools.generic.EscapeTool;
              
              import com.isomorphic.datasource.DSRequest;
              import com.isomorphic.sql.SQLDataSource;
              
              public class MySQLDataSource extends SQLDataSource {
                  private static final long serialVersionUID = 3994104605640773331L;
              
                  public static DSRequest addDefaultTemplateContext(DSRequest request) {
                      // Only need for velocity-templates in the mails
                      request.addToTemplateContext("esc", new EscapeTool());
                      return request;
                  }
              }
              I included velocity-tools-generic-2.0.jar in the buildpath and in my lib directory.
              The file is linked from
              supplyItem.ds.xml:
              Code:
              serverConstructor="com.smartgwt.sample.server.listener.MySQLDataSource"
              Without the $esc it is working. But in my application I'm sending content of a mail I was not able to process, so I do not want to send this possibly dirty data unescaped.
              For completeness, my .ds.xml is:
              Code:
              <DataSource xmlns="lmscompany/ds"
                  ID="supplyItem"
                  serverType="sql"
                  tableName="supplyItem"
                  titleField="itemName"
                  testFileName="/examples/shared/ds/test_data/supplyItem.data.xml"
                  dbImportFileName="/examples/shared/ds/test_data/supplyItemLarge.data.xml"
                  serverConstructor="com.smartgwt.sample.server.listener.MySQLDataSource"
                  >
                  <fields>
                      <field name="itemID"      type="sequence" hidden="true"       primaryKey="true"/>
                      <field name="itemName"    type="text"     title="Item"        length="128"       required="true"/>
                      <field name="SKU"         type="text"     title="SKU"         length="10"        required="true"/>
                      <field name="description" type="text"     title="Description" length="2000"/>
                      <field name="description_clob" type="text"     title="Description CLOB" length="200000"/>
                      <field name="category"    type="text"     title="Category"    length="128"       required="true"
                             foreignKey="supplyCategory.categoryName"/>
                      <field name="units"       type="enum"     title="Units"       length="5">
                          <valueMap>
                              <value>Roll</value>
                              <value>Ea</value>
                              <value>Pkt</value>
                              <value>Set</value>
                              <value>Tube</value>
                              <value>Pad</value>
                              <value>Ream</value>
                              <value>Tin</value>
                              <value>Bag</value>
                              <value>Ctn</value>
                              <value>Box</value>
                          </valueMap>
                      </field>
                      <field name="unitCost"    type="float"    title="Unit Cost"   required="true">
                          <validators>
                              <validator type="floatRange" min="0" errorMessage="Please enter a valid (positive) cost"/>
                              <validator type="floatPrecision" precision="2" errorMessage="The maximum allowed precision is 2"/>
                          </validators>
                      </field>
                      <field name="inStock"   type="boolean"  title="In Stock"/>
                      <field name="nextShipment"  type="date" title="Next Shipment"/>
                  </fields>
                  <operationBindings>
                      <operationBinding operationType="fetch" operationId="writeMail">
                          <mail>
                              <to>REMOVED</to>
                                  <from>REMOVED</from>
                                  <subject>CLOB-Testmail</subject>
                                  <templateFile>mails/CLOB.html</templateFile>
                          </mail>
                      </operationBinding>
                  </operationBindings>
              </DataSource>
              Can you make the content of the velocity variable (here $description_clob, which is the CLOB-version of supplyItem's description-field) be a String already?
              Or what is the correct action here? It would also be OK for me if I had to get the String into a variable in some Velocity code in the html file.

              Thank you & Best regards
              Blama

              Comment


                #8
                It is not enough information for us to reproduce your issue. Also, you did not describe in what way exactly this did not work for you this time. Does description_clob field still appear in your mail as toString() representation of Reader object?
                We *did* reproduce the issue originally and it was exactly like you described in the first post - Reader was not read into String before injecting into mail template. Then we fixed that, i.e. we now convert Reader to String. It works for us with EscapeTool as well as without it. Could you check please if your app uses the latest libs, where the bug is fixed? If it is so, please provide more complete use case showcasing the problem if possible. Thanks

                Comment


                  #9
                  Hi Isomorphic,

                  I was always using CLOB + EscapeTool, so I can't tell if your change did anything for me. But before and after your change it did/does not work with EscapeTool for me.

                  Here a full test case:
                  • Run buildInDS build.xml libs-target
                  • Copy ojdbc6.jar to built-in-ds\war\WEB-INF\lib
                  • Copy velocity-tools-generic-2.0.jar to built-in-ds\war\WEB-INF\lib
                  • Replace "REMOVED" in .ds.xml and server.properties with resaonable values
                  • Start sample in DevMode
                  • Hit servlet URL
                  Version used:
                  Code:
                  === 2016-04-25 11:31:53,955 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework (v10.1p_2016-04-21/PowerEdition Deployment 2016-04-21) - Initialization Complete
                  supplyItem​.ds.xml:
                  Code:
                  <DataSource
                      ID="supplyItem"
                      serverType="sql"
                      tableName="supplyItem"
                      titleField="itemName"
                      testFileName="/examples/shared/ds/test_data/supplyItem.data.xml"
                      dbImportFileName="/examples/shared/ds/test_data/supplyItemLarge.data.xml"
                      serverConstructor="com.smartgwt.sample.server.listener.MySQLDataSource"
                      >
                      <fields>
                          <field name="itemID"      type="sequence" hidden="true"       primaryKey="true"/>
                          <field name="itemName"    type="text"     title="Item"        length="128"       required="true"/>
                          <field name="SKU"         type="text"     title="SKU"         length="10"        required="true"/>
                          <field name="description" type="text"     title="Description" length="2000"/>
                          <field name="description_clob" type="text"     title="Description CLOB" length="200000"/>
                          <field name="category"    type="text"     title="Category"    length="128"       required="true"
                                 foreignKey="supplyCategory.categoryName"/>
                          <field name="units"       type="enum"     title="Units"       length="5">
                              <valueMap>
                                  <value>Roll</value>
                                  <value>Ea</value>
                                  <value>Pkt</value>
                                  <value>Set</value>
                                  <value>Tube</value>
                                  <value>Pad</value>
                                  <value>Ream</value>
                                  <value>Tin</value>
                                  <value>Bag</value>
                                  <value>Ctn</value>
                                  <value>Box</value>
                              </valueMap>
                          </field>
                          <field name="unitCost"    type="float"    title="Unit Cost"   required="true">
                              <validators>
                                  <validator type="floatRange" min="0" errorMessage="Please enter a valid (positive) cost"/>
                                  <validator type="floatPrecision" precision="2" errorMessage="The maximum allowed precision is 2"/>
                              </validators>
                          </field>
                          <field name="inStock"   type="boolean"  title="In Stock"/>
                          <field name="nextShipment"  type="date" title="Next Shipment"/>
                      </fields>
                      <operationBindings>
                          <operationBinding operationType="fetch" operationId="writeMail">
                              <mail contentType="text/html">
                                  <to>REMOVED</to>
                                  <from>REMOVED</from>
                                  <subject>CLOB-Testmail</subject>
                                  <templateFile>mail/testmail.html</templateFile>
                              </mail>
                          </operationBinding>
                      </operationBindings>
                  </DataSource>
                  MySQLDataSource.java:
                  Code:
                  package com.smartgwt.sample.server.listener;
                  
                  import org.apache.velocity.tools.generic.EscapeTool;
                  
                  import com.isomorphic.datasource.DSRequest;
                  import com.isomorphic.sql.SQLDataSource;
                  
                  public class MySQLDataSource extends SQLDataSource {
                      private static final long serialVersionUID = 3994104605640773331L;
                  
                      public static DSRequest addDefaultTemplateContext(DSRequest request) {
                          // Only need for velocity-templates in the mails
                          request.addToTemplateContext("esc", new EscapeTool());
                          return request;
                      }
                  }
                  server.properties:
                  Code:
                  sql.defaultDatabase: Oracle
                  sql.useAnsiJoins: true
                  
                  sql.Oracle.database.type: oracle
                  sql.Oracle.autoJoinTransactions: true
                  sql.Oracle.database.supportsSQLLimit: false
                  
                  sql.Oracle.interface.credentialsInURL: true
                  sql.Oracle.interface.type: dataSource
                  
                  sql.Oracle.driver: oracle.jdbc.pool.OracleDataSource
                  sql.Oracle.driver.serverName: localhost
                  sql.Oracle.driver.portNumber: 1521
                  sql.Oracle.driver.databaseName: XE
                  sql.Oracle.driver.user: TEST
                  sql.Oracle.driver.password: test
                  
                  sql.Oracle.driver.driverType: thin
                  sql.Oracle.driver.networkProtocol: tcp
                  sql.Oracle.driver.context:
                  
                  mail.system.mail.smtp.host: REMOVED
                  mail.system.mail.smtp.port: 587
                  mail.system.mail.smtp.auth: true
                  mail.system.mail.smtp.user: REMOVED
                  mail.system.mail.smtp.password: REMOVED
                  mail.system.mail.smtp.starttls.enable: true
                  mail/testmail.html:
                  Code:
                  <!DOCTYPE html>
                  <html>
                  <head>
                      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                      <style type="text/css">
                      body {
                          font-family: 'Open Sans', Arial, sans-serif;
                          font-size: 10pt;
                      }
                      </style>
                  </head>
                  <body>
                      <table cellspacing="0" cellpadding="0" border="0" width="100%">
                      <tr>
                          <td>esc description_clob</td>
                          <td>$esc.html($description_clob)</td>
                      </tr>
                      <tr>
                          <td>esc description</td>
                          <td>$esc.html($description)</td>
                      </tr>
                      <tr>
                          <td>description_clob</td>
                          <td>$description_clob</td>
                      </tr>
                      <tr>
                          <td>description</td>
                          <td>$description</td>
                      </tr>
                      </table>
                  </body>
                  </html>
                  web.xml addition:
                  Code:
                      <servlet>
                          <servlet-name>TestMail</servlet-name>
                          <servlet-class>com.smartgwt.sample.server.listener.TestMail</servlet-class>
                      </servlet>
                      <servlet-mapping>
                          <servlet-name>TestMail</servlet-name>
                          <url-pattern>/TestMail</url-pattern>
                      </servlet-mapping>
                  Oracle DDL:
                  Code:
                  SET DEFINE OFF
                  DROP TABLE supplyitem;
                  DROP SEQUENCE supplyitem_itemid;
                  CREATE SEQUENCE supplyitem_itemid MINVALUE 1 ;
                     CREATE TABLE supplyitem
                        (
                          itemid      INTEGER,
                          itemname    VARCHAR2(128 BYTE),
                          sku         VARCHAR2(10 BYTE),
                          description VARCHAR2(2000 BYTE),
                          description_clob CLOB,
                          category     VARCHAR2(128 BYTE),
                          units        VARCHAR2(5 BYTE),
                          unitcost     NUMBER DEFAULT 0,
                          instock      VARCHAR2(6 BYTE),
                          nextshipment DATE,
                          CONSTRAINT pk_supplyitem PRIMARY KEY(itemid)
                        ) ;
                  CREATE OR REPLACE TRIGGER supplyitem_b_i_r
                      BEFORE INSERT ON supplyitem FOR EACH ROW WHEN(NEW.itemid IS NULL)
                        BEGIN
                          :NEW.itemid := supplyitem_itemid.nextval;
                          :NEW.description_clob := :NEW.description;
                        END;
                  /
                  SHOW ERRORS;
                  
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Pens Stabiliner 808 Ballpoint Fine Blue','58074602','Schwan Stabilo 808 ballpoint pens are a quality ballpoint with a non-slip grip zone. Long writing length due to the extra large refill with visible ink volume. Available in medium and fine point in four colours.','Office Paper Products','Ea',0.24,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Pens Stabiliner 808 Ballpoint Fine Red','58074604',NULL,'Office Paper Products','Ea',0.24,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Pens Stabiliner 808 Ballpoint Fine Green','58074605',NULL,'Office Paper Products','Ea',0.24,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Pens Stabiliner 808 Ballpoint Medium Black','58074606',NULL,'Office Paper Products','Ea',0.24,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Pens Stabiliner 808 Ballpoint Medium Blue','58119902',NULL,'Office Paper Products','Ea',0.24,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Post It Memo Pad Instruction Ref Pm03','58119904',NULL,'Office Paper Products',NULL,0.24,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Post-it Instruction Pad Stop Press Ref Ps10','57531000',NULL,'Office Paper Products',NULL,2.83,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Post-it Instruction Pad Final Notice Ref Pn11','57725500',NULL,'Office Paper Products',NULL,2.83,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Adding Machine Roll 57x57mm Standard','57726600',NULL,'Adding Machine/calculator Roll','Roll',2.83,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Adding Machine Roll 57x64mm Standard','45300',NULL,'Adding Machine/calculator Roll','Roll',0.41,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Adding Machine Roll 57x76mm Standard','90600',NULL,'Adding Machine/calculator Roll','Roll',0.47,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Adding Machine Roll 44x76mm Standard','135900',NULL,'Adding Machine/calculator Roll','Roll',0.61,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Adding Machine Roll 57x57mm Lint Free','190000',NULL,'Adding Machine/calculator Roll','Roll',0.58,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES (NULL,'226500',NULL,NULL,NULL,0.52,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Glue UHU Clear Gum 250ml','724800','Ideal for paper and card. Dries clear. Easy to use. Washable & Non-Toxic.','Pastes and Gum',NULL,2.26,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Spray Adhesive Multipurpose Can No.76 3M','860700','A general purpose glue suitable for paper and card. Includes a quality brush for easy application. Washable & Non-Toxic','Spray Adhesives','Ea',1.73,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES (NULL,'951300',NULL,NULL,NULL,12.76,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Glue Pentel 30CC Roll On 30ml','996600','Odourless liquid adhesive for use on paper and cardboard. Unique rubber roll-on applicator is easy to use. Available in Pink or Blue. Contains 30ml of glue.','Roll-on Glue','Ea',1.83,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('Glue UHU Super Glue 3ml','1041900','Superfast - super strong. One small drop bonds in seconds with an extremely high bonding power. Dries clear. For all kinds of on the spot repairs. Facilitates the gluing of hard to clamp objects.','Super Glue','Ea',1.41,NULL,NULL);
                  INSERT INTO supplyitem (itemname,sku,description,category,units,unitcost,instock,nextshipment) VALUES ('U-Tac UHU Pkt 75gm','1042100','Water resistant, dries clear and is pleasant to work with on any surface. The bond is suitable for both flexible and rigid repairs. UHU All Purpose dries fast and holds fast.','U-Tac','Pkt',1.26,NULL,NULL);
                  UPDATE supplyitem SET description_clob = description_clob || description_clob WHERE itemid = 1;
                  UPDATE supplyitem SET description_clob = description_clob || description_clob WHERE itemid = 1;
                  UPDATE supplyitem SET description_clob = description_clob || description_clob WHERE itemid = 1;
                  COMMIT;
                  For me, this results in: Click image for larger version

Name:	ESC-CLOB.png
Views:	185
Size:	56.1 KB
ID:	237309



                  Best regards
                  Blama
                  Last edited by Blama; 25 Apr 2016, 01:57.

                  Comment


                    #10
                    Please show us your servlet TestMail.java to complete the sample. Also server logs may help. Thank you.

                    Comment


                      #11
                      Sorry, I must have missed that one.

                      TestMail.java:
                      Code:
                      package com.smartgwt.sample.server.listener;
                      
                      import java.io.IOException;
                      
                      import javax.servlet.ServletException;
                      import javax.servlet.http.HttpServlet;
                      import javax.servlet.http.HttpServletRequest;
                      import javax.servlet.http.HttpServletResponse;
                      
                      import com.isomorphic.datasource.DSRequest;
                      import com.isomorphic.datasource.DataSource;
                      
                      public class TestMail extends HttpServlet {
                          private static final long serialVersionUID = 9211562414112287159L;
                      
                          @Override
                          public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
                              try {
                                  doUpdate(request, response);
                              } catch (Exception e) {
                                  e.printStackTrace();
                              }
                          }
                      
                          @Override
                          public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
                              doGet(request, response);
                          }
                      
                          private void doUpdate(HttpServletRequest request, HttpServletResponse response) throws Exception {
                              DSRequest writeMailRequest = new DSRequest("supplyItem", DataSource.OP_FETCH);
                              writeMailRequest.setOperationId("writeMail");
                              writeMailRequest.addToCriteria(writeMailRequest.getDataSource().getPrimaryKey(), 1);
                              writeMailRequest.execute();
                          }
                      };
                      Logs follow in a minute.

                      Best regards
                      Blama

                      Comment


                        #12
                        Server log part 1:
                        [CODE]

                        Code:
                        [Server@4d0753c9]: [Thread[main,5,main]]: checkRunning(false) entered
                        [Server@4d0753c9]: [Thread[main,5,main]]: checkRunning(false) exited
                        [Server@4d0753c9]: Startup sequence initiated from main() method
                        [Server@4d0753c9]: Could not load properties from file
                        [Server@4d0753c9]: Using cli/default properties only
                        [Server@4d0753c9]: Initiating startup sequence...
                        [Server@4d0753c9]: Server socket opened successfully in 0 ms.
                        log4j:WARN No appenders could be found for logger (hsqldb.db.HSQLDB54389CE700.ENGINE).
                        log4j:WARN Please initialize the log4j system properly.
                        log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
                        [Server@4d0753c9]: Database [index=0, id=0, db=file:C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\WEB-INF\db\hsqldb\isomorphic, alias=isomorphic] opened sucessfully in 530 ms.
                        [Server@4d0753c9]: Startup sequence completed in 531 ms.
                        [Server@4d0753c9]: 2016-04-25 20:19:03.807 HSQLDB server 2.2.9 is online on port 9001
                        [Server@4d0753c9]: To close normally, connect and execute SHUTDOWN SQL
                        [Server@4d0753c9]: From command line, use [Ctrl]+[C] to abort abruptly
                        ISC: Configuring log4j from: file:/C:/Users/ST/workspace/lib/smartgwtpower-5.1p/samples/built-in-ds/war/WEB-INF/classes/log4j.isc.config.xml
                        === 2016-04-25 20:19:03,960 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework - Initializing
                        === 2016-04-25 20:19:03,964 [main] INFO  ConfigLoader - Attempting to load framework.properties from CLASSPATH
                        === 2016-04-25 20:19:04,001 [main] INFO  ConfigLoader - Successfully loaded framework.properties from CLASSPATH at location: jar:file:/C:/Users/ST/workspace/lib/smartgwtpower-5.1p/samples/built-in-ds/war/WEB-INF/lib/isomorphic_core_rpc.jar!/framework.properties
                        === 2016-04-25 20:19:04,001 [main] INFO  ConfigLoader - Attempting to load project.properties from CLASSPATH
                        === 2016-04-25 20:19:04,002 [main] INFO  ConfigLoader - Unable to locate project.properties in CLASSPATH
                        === 2016-04-25 20:19:04,003 [main] INFO  ConfigLoader - Successfully loaded isc_interfaces.properties from CLASSPATH at location: jar:file:/C:/Users/ST/workspace/lib/smartgwtpower-5.1p/samples/built-in-ds/war/WEB-INF/lib/isomorphic_core_rpc.jar!/isc_interfaces.properties
                        === 2016-04-25 20:19:04,004 [main] INFO  ConfigLoader - Attempting to load server.properties from CLASSPATH
                        === 2016-04-25 20:19:04,005 [main] INFO  ConfigLoader - Successfully loaded server.properties from CLASSPATH at location: file:/C:/Users/ST/workspace/lib/smartgwtpower-5.1p/samples/built-in-ds/war/WEB-INF/classes/server.properties
                        === 2016-04-25 20:19:04,009 [main] INFO  Logger - Logging system started.
                        === 2016-04-25 20:19:04,010 [main] DEBUG ConfigParser - Matched var name: gwtModuleName
                        === 2016-04-25 20:19:04,011 [main] DEBUG ConfigParser - value after substitution: builtinds/sc
                        === 2016-04-25 20:19:04,011 [main] INFO  ISCInit - Auto-detected webRoot - using: C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war
                        === 2016-04-25 20:19:04,011 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework (v10.1p_2016-04-21/PowerEdition Deployment 2016-04-21) - Initialization Complete
                        log4j:WARN No appenders could be found for logger (org.apache.jasper.compiler.JspRuntimeContext).
                        log4j:WARN Please initialize the log4j system properly.
                        log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
                        Linking modules
                           Bootstrap link for command-line module 'com.smartgwt.sample.BuiltInDS'
                              Linking module 'builtinds'
                                 Invoking Linker Cross-Site-Iframe
                                    Ignoring the following script tags in the gwt.xml file
                        sc/initsc.js
                        sc/modules/ISC_Core.js
                        sc/modules/ISC_Foundation.js
                        sc/modules/ISC_Containers.js
                        sc/modules/ISC_Grids.js
                        sc/modules/ISC_Forms.js
                        sc/modules/ISC_RichTextEditor.js
                        sc/modules/ISC_Calendar.js
                        sc/modules/ISC_DataBinding.js
                        sc/skins/Simplicity/load_skin.js
                        
                           Invoking Linker SmartGwtScriptInjector
                              Creating loadScriptTagFiles.js to manually load the following script tags:
                        sc/initsc.js
                        sc/modules/ISC_Core.js
                        sc/modules/ISC_Foundation.js
                        sc/modules/ISC_Containers.js
                        sc/modules/ISC_Grids.js
                        sc/modules/ISC_Forms.js
                        sc/modules/ISC_RichTextEditor.js
                        sc/modules/ISC_Calendar.js
                        sc/modules/ISC_DataBinding.js
                        sc/skins/Simplicity/load_skin.js
                        === 2016-04-25 20:19:11,716 [4-36] DEBUG ConfigParser - Matched var name: debug
                        === 2016-04-25 20:19:11,717 [4-36] DEBUG ConfigParser - value after substitution: true
                        === 2016-04-25 20:19:11,718 [4-36] INFO  RequestContext - URL: '/TestMail', User-Agent: 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0': Moz (Gecko) with Accept-Encoding header
                        === 2016-04-25 20:19:11,719 [4-36] DEBUG ConfigParser - Matched var name: gwtModuleName
                        === 2016-04-25 20:19:11,719 [4-36] DEBUG ConfigParser - value after substitution: builtinds/sc
                        === 2016-04-25 20:19:12,334 [4-36] DEBUG ConfigParser - Matched var name: isomorphicDir
                        === 2016-04-25 20:19:12,335 [4-36] DEBUG ConfigParser - Matched var name: isomorphicPathRootRelative
                        === 2016-04-25 20:19:12,335 [4-36] DEBUG ConfigParser - Matched var name: gwtModuleName
                        === 2016-04-25 20:19:12,335 [4-36] DEBUG ConfigParser - value after substitution: builtinds/sc
                        === 2016-04-25 20:19:12,335 [4-36] DEBUG ConfigParser - value after substitution: builtinds/sc
                        === 2016-04-25 20:19:12,335 [4-36] DEBUG ConfigParser - Matched var name: webRoot
                        === 2016-04-25 20:19:12,336 [4-36] DEBUG ConfigParser - value after substitution: C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war/builtinds/sc
                        === 2016-04-25 20:19:12,336 [4-36] DEBUG ConfigParser - value after substitution: C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war/builtinds/sc/system/schema
                        === 2016-04-25 20:19:12,350 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\builtinds\sc\system\schema\builtinTypes.xml: 6ms
                        === 2016-04-25 20:19:12,375 [4-36] INFO  PoolManager - SmartClient pooling started for 'simpleTypes' objects
                        === 2016-04-25 20:19:12,375 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'simpleTypes'
                        === 2016-04-25 20:19:12,377 [4-36] DEBUG ConfigParser - Matched var name: webRoot
                        === 2016-04-25 20:19:12,377 [4-36] DEBUG ConfigParser - value after substitution: C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war/ds
                        === 2016-04-25 20:19:12,378 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'simpleTypes' but null was returned
                        === 2016-04-25 20:19:12,378 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'simpleTypes' in the pooling flow
                        === 2016-04-25 20:19:12,378 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Object'
                        === 2016-04-25 20:19:12,387 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 1 of type 'Object' and assigned it to thread qtp239937174-36
                        === 2016-04-25 20:19:12,387 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 1 of type 'Object' in the pooling flow
                        === 2016-04-25 20:19:12,387 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 1 of type 'Object'
                        === 2016-04-25 20:19:12,388 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'any'
                        === 2016-04-25 20:19:12,389 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'any' but null was returned
                        === 2016-04-25 20:19:12,389 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'any' in the pooling flow
                        === 2016-04-25 20:19:12,391 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'boolean'
                        === 2016-04-25 20:19:12,392 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'boolean' but null was returned
                        === 2016-04-25 20:19:12,392 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'boolean' in the pooling flow
                        === 2016-04-25 20:19:12,392 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'integer'
                        === 2016-04-25 20:19:12,393 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'integer' but null was returned
                        === 2016-04-25 20:19:12,393 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'integer' in the pooling flow
                        === 2016-04-25 20:19:12,393 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'float'
                        === 2016-04-25 20:19:12,393 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'float' but null was returned
                        === 2016-04-25 20:19:12,393 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'float' in the pooling flow
                        === 2016-04-25 20:19:12,393 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'date'
                        === 2016-04-25 20:19:12,394 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'date' but null was returned
                        === 2016-04-25 20:19:12,394 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'date' in the pooling flow
                        === 2016-04-25 20:19:12,394 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'time'
                        === 2016-04-25 20:19:12,394 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'time' but null was returned
                        === 2016-04-25 20:19:12,394 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'time' in the pooling flow
                        === 2016-04-25 20:19:12,394 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'text'
                        === 2016-04-25 20:19:12,395 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'text' but null was returned
                        === 2016-04-25 20:19:12,395 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'text' in the pooling flow
                        === 2016-04-25 20:19:12,395 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'string'
                        === 2016-04-25 20:19:12,395 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'string' but null was returned
                        === 2016-04-25 20:19:12,395 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'string' in the pooling flow
                        === 2016-04-25 20:19:12,396 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'link'
                        === 2016-04-25 20:19:12,396 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'link' but null was returned
                        === 2016-04-25 20:19:12,396 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'link' in the pooling flow
                        === 2016-04-25 20:19:12,397 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'int'
                        === 2016-04-25 20:19:12,397 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'int' but null was returned
                        === 2016-04-25 20:19:12,397 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'int' in the pooling flow
                        === 2016-04-25 20:19:12,397 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'long'
                        === 2016-04-25 20:19:12,397 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'long' but null was returned
                        === 2016-04-25 20:19:12,397 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'long' in the pooling flow
                        === 2016-04-25 20:19:12,398 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'number'
                        === 2016-04-25 20:19:12,398 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'number' but null was returned
                        === 2016-04-25 20:19:12,398 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'number' in the pooling flow
                        === 2016-04-25 20:19:12,398 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'decimal'
                        === 2016-04-25 20:19:12,398 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'decimal' but null was returned
                        === 2016-04-25 20:19:12,398 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'decimal' in the pooling flow
                        === 2016-04-25 20:19:12,399 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'double'
                        === 2016-04-25 20:19:12,399 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'double' but null was returned
                        === 2016-04-25 20:19:12,399 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'double' in the pooling flow
                        === 2016-04-25 20:19:12,399 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dateTime'
                        === 2016-04-25 20:19:12,399 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dateTime' but null was returned
                        === 2016-04-25 20:19:12,399 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dateTime' in the pooling flow
                        === 2016-04-25 20:19:12,399 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'datetime'
                        === 2016-04-25 20:19:12,400 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'datetime' but null was returned
                        === 2016-04-25 20:19:12,400 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'datetime' in the pooling flow
                        === 2016-04-25 20:19:12,400 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'validators'
                        === 2016-04-25 20:19:12,400 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'validators' but null was returned
                        === 2016-04-25 20:19:12,400 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'validators' in the pooling flow
                        === 2016-04-25 20:19:12,401 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'positiveInteger'
                        === 2016-04-25 20:19:12,401 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'positiveInteger' but null was returned
                        === 2016-04-25 20:19:12,401 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'positiveInteger' in the pooling flow
                        === 2016-04-25 20:19:12,401 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'integerPercent'
                        === 2016-04-25 20:19:12,402 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'integerPercent' but null was returned
                        === 2016-04-25 20:19:12,402 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'integerPercent' in the pooling flow
                        === 2016-04-25 20:19:12,402 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'percent'
                        === 2016-04-25 20:19:12,402 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'percent' but null was returned
                        === 2016-04-25 20:19:12,402 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'percent' in the pooling flow
                        === 2016-04-25 20:19:12,403 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sequence'
                        === 2016-04-25 20:19:12,403 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sequence' but null was returned
                        === 2016-04-25 20:19:12,403 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sequence' in the pooling flow
                        === 2016-04-25 20:19:12,403 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'enum'
                        === 2016-04-25 20:19:12,403 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'enum' but null was returned
                        === 2016-04-25 20:19:12,404 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'enum' in the pooling flow
                        === 2016-04-25 20:19:12,404 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'intEnum'
                        === 2016-04-25 20:19:12,404 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'intEnum' but null was returned
                        === 2016-04-25 20:19:12,404 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'intEnum' in the pooling flow
                        === 2016-04-25 20:19:12,404 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'char'
                        === 2016-04-25 20:19:12,405 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'char' but null was returned
                        === 2016-04-25 20:19:12,405 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'char' in the pooling flow
                        === 2016-04-25 20:19:12,405 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ntext'
                        === 2016-04-25 20:19:12,406 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ntext' but null was returned
                        === 2016-04-25 20:19:12,406 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ntext' in the pooling flow
                        === 2016-04-25 20:19:12,406 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'password'
                        === 2016-04-25 20:19:12,407 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'password' but null was returned
                        === 2016-04-25 20:19:12,407 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'password' in the pooling flow
                        === 2016-04-25 20:19:12,407 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'localeInt'
                        === 2016-04-25 20:19:12,408 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'localeInt' but null was returned
                        === 2016-04-25 20:19:12,408 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'localeInt' in the pooling flow
                        === 2016-04-25 20:19:12,409 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'localeFloat'
                        === 2016-04-25 20:19:12,409 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'localeFloat' but null was returned
                        === 2016-04-25 20:19:12,409 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'localeFloat' in the pooling flow
                        === 2016-04-25 20:19:12,409 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'localeCurrency'
                        === 2016-04-25 20:19:12,410 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'localeCurrency' but null was returned
                        === 2016-04-25 20:19:12,410 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'localeCurrency' in the pooling flow
                        === 2016-04-25 20:19:12,410 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'phoneNumber'
                        === 2016-04-25 20:19:12,410 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'phoneNumber' but null was returned
                        === 2016-04-25 20:19:12,410 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'phoneNumber' in the pooling flow
                        === 2016-04-25 20:19:12,411 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'regexp'
                        === 2016-04-25 20:19:12,411 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'regexp' but null was returned
                        === 2016-04-25 20:19:12,411 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'regexp' in the pooling flow
                        === 2016-04-25 20:19:12,411 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'identifier'
                        === 2016-04-25 20:19:12,411 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'identifier' but null was returned
                        === 2016-04-25 20:19:12,411 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'identifier' in the pooling flow
                        === 2016-04-25 20:19:12,412 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'URL'
                        === 2016-04-25 20:19:12,412 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'URL' but null was returned
                        === 2016-04-25 20:19:12,412 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'URL' in the pooling flow
                        === 2016-04-25 20:19:12,412 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'url'
                        === 2016-04-25 20:19:12,412 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'url' but null was returned
                        === 2016-04-25 20:19:12,412 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'url' in the pooling flow
                        === 2016-04-25 20:19:12,412 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'XPath'
                        === 2016-04-25 20:19:12,413 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'XPath' but null was returned
                        === 2016-04-25 20:19:12,413 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'XPath' in the pooling flow
                        === 2016-04-25 20:19:12,413 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'HTMLString'
                        === 2016-04-25 20:19:12,413 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'HTMLString' but null was returned
                        === 2016-04-25 20:19:12,413 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'HTMLString' in the pooling flow
                        === 2016-04-25 20:19:12,414 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'HTML'
                        === 2016-04-25 20:19:12,414 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'HTML' but null was returned
                        === 2016-04-25 20:19:12,414 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'HTML' in the pooling flow
                        === 2016-04-25 20:19:12,414 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'html'
                        === 2016-04-25 20:19:12,414 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'html' but null was returned
                        === 2016-04-25 20:19:12,414 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'html' in the pooling flow
                        === 2016-04-25 20:19:12,415 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'measure'
                        === 2016-04-25 20:19:12,415 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'measure' but null was returned
                        === 2016-04-25 20:19:12,415 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'measure' in the pooling flow
                        === 2016-04-25 20:19:12,415 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'integerOrAuto'
                        === 2016-04-25 20:19:12,415 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'integerOrAuto' but null was returned
                        === 2016-04-25 20:19:12,415 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'integerOrAuto' in the pooling flow
                        === 2016-04-25 20:19:12,416 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'integerOrIdentifier'
                        === 2016-04-25 20:19:12,416 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'integerOrIdentifier' but null was returned
                        === 2016-04-25 20:19:12,416 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'integerOrIdentifier' in the pooling flow
                        === 2016-04-25 20:19:12,416 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'handler'
                        === 2016-04-25 20:19:12,416 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'handler' but null was returned
                        === 2016-04-25 20:19:12,416 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'handler' in the pooling flow
                        === 2016-04-25 20:19:12,416 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'callback'
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'callback' but null was returned
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'callback' in the pooling flow
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'action'
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'action' but null was returned
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'action' in the pooling flow
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'setter'
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'setter' but null was returned
                        === 2016-04-25 20:19:12,417 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'setter' in the pooling flow
                        === 2016-04-25 20:19:12,418 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'getter'
                        === 2016-04-25 20:19:12,418 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'getter' but null was returned
                        === 2016-04-25 20:19:12,418 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'getter' in the pooling flow
                        === 2016-04-25 20:19:12,418 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'tester'
                        === 2016-04-25 20:19:12,418 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'tester' but null was returned
                        === 2016-04-25 20:19:12,418 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'tester' in the pooling flow
                        === 2016-04-25 20:19:12,418 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'method'
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'method' but null was returned
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'method' in the pooling flow
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'function'
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'function' but null was returned
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'function' in the pooling flow
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'expression'
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'expression' but null was returned
                        === 2016-04-25 20:19:12,419 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'expression' in the pooling flow
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'className'
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'className' but null was returned
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'className' in the pooling flow
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueMap'
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueMap' but null was returned
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueMap' in the pooling flow
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valignEnum'
                        === 2016-04-25 20:19:12,420 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valignEnum' but null was returned
                        === 2016-04-25 20:19:12,421 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valignEnum' in the pooling flow
                        === 2016-04-25 20:19:12,421 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'alignEnum'
                        === 2016-04-25 20:19:12,421 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'alignEnum' but null was returned
                        === 2016-04-25 20:19:12,421 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'alignEnum' in the pooling flow
                        === 2016-04-25 20:19:12,421 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sideEnum'
                        === 2016-04-25 20:19:12,422 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sideEnum' but null was returned
                        === 2016-04-25 20:19:12,422 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sideEnum' in the pooling flow
                        === 2016-04-25 20:19:12,422 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'color'
                        === 2016-04-25 20:19:12,422 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'color' but null was returned
                        === 2016-04-25 20:19:12,422 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'color' in the pooling flow
                        === 2016-04-25 20:19:12,422 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'cssClass'
                        === 2016-04-25 20:19:12,423 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'cssClass' but null was returned
                        === 2016-04-25 20:19:12,423 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'cssClass' in the pooling flow
                        === 2016-04-25 20:19:12,424 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'modifier'
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'modifier' but null was returned
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'modifier' in the pooling flow
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'modifierTimestamp'
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'modifierTimestamp' but null was returned
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'modifierTimestamp' in the pooling flow
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'creator'
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'creator' but null was returned
                        === 2016-04-25 20:19:12,425 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'creator' in the pooling flow
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'creatorTimestamp'
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'creatorTimestamp' but null was returned
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'creatorTimestamp' in the pooling flow
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'binary'
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'binary' but null was returned
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'binary' in the pooling flow
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'imageFile'
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'imageFile' but null was returned
                        === 2016-04-25 20:19:12,426 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'imageFile' in the pooling flow
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'blob'
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'blob' but null was returned
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'blob' in the pooling flow
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'clob'
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'clob' but null was returned
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'clob' in the pooling flow
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'image'
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'image' but null was returned
                        === 2016-04-25 20:19:12,427 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'image' in the pooling flow
                        === 2016-04-25 20:19:12,445 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'supplyItem'
                        === 2016-04-25 20:19:12,448 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\ds\supplyItem.ds.xml: 3ms
                        === 2016-04-25 20:19:12,448 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'DataSource'
                        === 2016-04-25 20:19:12,454 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\builtinds\sc\system\schema\DataSource.ds.xml: 5ms
                        === 2016-04-25 20:19:12,454 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Object'
                        === 2016-04-25 20:19:12,454 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 2 of type 'Object' and assigned it to thread qtp239937174-36
                        === 2016-04-25 20:19:12,454 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 2 of type 'Object' in the pooling flow
                        === 2016-04-25 20:19:12,454 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 2 of type 'Object'
                        === 2016-04-25 20:19:12,454 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fields'
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fields' but null was returned
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fields' in the pooling flow
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ID'
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ID' but null was returned
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ID' in the pooling flow
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoIdField'
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoIdField' but null was returned
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoIdField' in the pooling flow
                        === 2016-04-25 20:19:12,455 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'inheritsFrom'
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'inheritsFrom' but null was returned
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'inheritsFrom' in the pooling flow
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useParentFieldOrder'
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useParentFieldOrder' but null was returned
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useParentFieldOrder' in the pooling flow
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useLocalFieldsOnly'
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useLocalFieldsOnly' but null was returned
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useLocalFieldsOnly' in the pooling flow
                        === 2016-04-25 20:19:12,456 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'restrictToParentFields'
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'restrictToParentFields' but null was returned
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'restrictToParentFields' in the pooling flow
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueMap'
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueMap' but null was returned
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueMap' in the pooling flow
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataFormat'
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataFormat' but null was returned
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataFormat' in the pooling flow
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useStrictJSON'
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useStrictJSON' but null was returned
                        === 2016-04-25 20:19:12,457 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useStrictJSON' in the pooling flow
                        === 2016-04-25 20:19:12,458 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'noAutoFetch'
                        === 2016-04-25 20:19:12,458 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'noAutoFetch' but null was returned
                        === 2016-04-25 20:19:12,458 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'noAutoFetch' in the pooling flow
                        === 2016-04-25 20:19:12,458 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serverType'
                        === 2016-04-25 20:19:12,458 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serverType' but null was returned
                        === 2016-04-25 20:19:12,458 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serverType' in the pooling flow
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'schemaBean'
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'schemaBean' but null was returned
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'schemaBean' in the pooling flow
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'callbackParam'
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'callbackParam' but null was returned
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'callbackParam' in the pooling flow
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requestProperties'
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requestProperties' but null was returned
                        === 2016-04-25 20:19:12,459 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requestProperties' in the pooling flow
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'addGlobalId'
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'addGlobalId' but null was returned
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'addGlobalId' in the pooling flow
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'showPrompt'
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'showPrompt' but null was returned
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'showPrompt' in the pooling flow
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataSourceVersion'
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataSourceVersion' but null was returned
                        === 2016-04-25 20:19:12,460 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataSourceVersion' in the pooling flow
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dbName'
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dbName' but null was returned
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dbName' in the pooling flow
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'schema'
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'schema' but null was returned
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'schema' in the pooling flow
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'tableName'
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'tableName' but null was returned
                        === 2016-04-25 20:19:12,461 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'tableName' in the pooling flow
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'quoteTableName'
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'quoteTableName' but null was returned
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'quoteTableName' in the pooling flow
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'tableCode'
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'tableCode' but null was returned
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'tableCode' in the pooling flow
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'strictSQLFiltering'
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'strictSQLFiltering' but null was returned
                        === 2016-04-25 20:19:12,462 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'strictSQLFiltering' in the pooling flow
                        === 2016-04-25 20:19:12,463 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serverObject'
                        === 2016-04-25 20:19:12,463 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serverObject' but null was returned
                        === 2016-04-25 20:19:12,463 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serverObject' in the pooling flow
                        === 2016-04-25 20:19:12,463 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serverConstructor'
                        === 2016-04-25 20:19:12,463 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serverConstructor' but null was returned
                        === 2016-04-25 20:19:12,463 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serverConstructor' in the pooling flow
                        === 2016-04-25 20:19:12,463 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'operationBindings'
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'operationBindings' but null was returned
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'operationBindings' in the pooling flow
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'field'
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'field' but null was returned
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'field' in the pooling flow
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'operationBinding'
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'operationBinding' but null was returned
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'operationBinding' in the pooling flow
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serviceNamespace'
                        === 2016-04-25 20:19:12,464 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serviceNamespace' but null was returned
                        === 2016-04-25 20:19:12,465 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serviceNamespace' in the pooling flow
                        === 2016-04-25 20:19:12,465 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataURL'
                        === 2016-04-25 20:19:12,465 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataURL' but null was returned
                        === 2016-04-25 20:19:12,465 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataURL' in the pooling flow
                        === 2016-04-25 20:19:12,465 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataProtocol'
                        === 2016-04-25 20:19:12,465 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataProtocol' but null was returned
                        === 2016-04-25 20:19:12,465 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataProtocol' in the pooling flow
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataTransport'
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataTransport' but null was returned
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataTransport' in the pooling flow
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'defaultParams'
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'defaultParams' but null was returned
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'defaultParams' in the pooling flow
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'soapAction'
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'soapAction' but null was returned
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'soapAction' in the pooling flow
                        === 2016-04-25 20:19:12,466 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'jsonPrefix'
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'jsonPrefix' but null was returned
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'jsonPrefix' in the pooling flow
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'jsonSuffix'
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'jsonSuffix' but null was returned
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'jsonSuffix' in the pooling flow
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'messageTemplate'
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'messageTemplate' but null was returned
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'messageTemplate' in the pooling flow
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'defaultCriteria'
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'defaultCriteria' but null was returned
                        === 2016-04-25 20:19:12,467 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'defaultCriteria' in the pooling flow
                        === 2016-04-25 20:19:12,468 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'tagName'
                        === 2016-04-25 20:19:12,468 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'tagName' but null was returned
                        === 2016-04-25 20:19:12,468 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'tagName' in the pooling flow
                        === 2016-04-25 20:19:12,468 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'recordXPath'
                        === 2016-04-25 20:19:12,468 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'recordXPath' but null was returned
                        === 2016-04-25 20:19:12,468 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'recordXPath' in the pooling flow
                        === 2016-04-25 20:19:12,468 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'recordName'
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'recordName' but null was returned
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'recordName' in the pooling flow
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlNamespaces'
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlNamespaces' but null was returned
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlNamespaces' in the pooling flow
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dropExtraFields'
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dropExtraFields' but null was returned
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dropExtraFields' in the pooling flow
                        === 2016-04-25 20:19:12,469 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'schemaNamespace'
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'schemaNamespace' but null was returned
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'schemaNamespace' in the pooling flow
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'mustQualify'
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'mustQualify' but null was returned
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'mustQualify' in the pooling flow
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xsdSimpleContent'
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xsdSimpleContent' but null was returned
                        === 2016-04-25 20:19:12,470 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xsdSimpleContent' in the pooling flow
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xsdAnyElement'
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xsdAnyElement' but null was returned
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xsdAnyElement' in the pooling flow
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xsdAbstract'
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xsdAbstract' but null was returned
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xsdAbstract' in the pooling flow
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'title'
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'title' but null was returned
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'title' in the pooling flow
                        === 2016-04-25 20:19:12,471 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'titleField'
                        === 2016-04-25 20:19:12,472 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'titleField' but null was returned
                        === 2016-04-25 20:19:12,472 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'titleField' in the pooling flow
                        === 2016-04-25 20:19:12,472 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'pluralTitle'
                        === 2016-04-25 20:19:12,472 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'pluralTitle' but null was returned
                        === 2016-04-25 20:19:12,472 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'pluralTitle' in the pooling flow
                        === 2016-04-25 20:19:12,472 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'clientOnly'
                        === 2016-04-25 20:19:12,472 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'clientOnly' but null was returned
                        === 2016-04-25 20:19:12,473 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'clientOnly' in the pooling flow
                        === 2016-04-25 20:19:12,474 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'testFileName'
                        === 2016-04-25 20:19:12,474 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'testFileName' but null was returned
                        === 2016-04-25 20:19:12,474 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'testFileName' in the pooling flow
                        === 2016-04-25 20:19:12,475 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dbImportFileName'
                        === 2016-04-25 20:19:12,475 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dbImportFileName' but null was returned
                        === 2016-04-25 20:19:12,475 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dbImportFileName' in the pooling flow
                        === 2016-04-25 20:19:12,475 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'testData'
                        === 2016-04-25 20:19:12,475 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'testData' but null was returned
                        === 2016-04-25 20:19:12,475 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'testData' in the pooling flow
                        === 2016-04-25 20:19:12,475 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'cacheData'
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'cacheData' but null was returned
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'cacheData' in the pooling flow
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'cacheAllData'
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'cacheAllData' but null was returned
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'cacheAllData' in the pooling flow
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'cacheAcrossOperationIds'
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'cacheAcrossOperationIds' but null was returned
                        === 2016-04-25 20:19:12,476 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'cacheAcrossOperationIds' in the pooling flow
                        === 2016-04-25 20:19:12,477 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'types'
                        === 2016-04-25 20:19:12,477 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'types' but null was returned
                        === 2016-04-25 20:19:12,477 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'types' in the pooling flow
                        === 2016-04-25 20:19:12,477 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'groups'
                        === 2016-04-25 20:19:12,477 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'groups' but null was returned
                        === 2016-04-25 20:19:12,477 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'groups' in the pooling flow
                        === 2016-04-25 20:19:12,477 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'methods'
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'methods' but null was returned
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'methods' in the pooling flow
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'showSuperClassActions'
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'showSuperClassActions' but null was returned
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'showSuperClassActions' in the pooling flow
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'createStandalone'
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'createStandalone' but null was returned
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'createStandalone' in the pooling flow
                        === 2016-04-25 20:19:12,478 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useFlatFields'
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useFlatFields' but null was returned
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useFlatFields' in the pooling flow
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'showLocalFieldsOnly'
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'showLocalFieldsOnly' but null was returned
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'showLocalFieldsOnly' in the pooling flow
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'showSuperClassEvents'
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'showSuperClassEvents' but null was returned
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'showSuperClassEvents' in the pooling flow
                        === 2016-04-25 20:19:12,479 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'globalNamespaces'
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'globalNamespaces' but null was returned
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'globalNamespaces' in the pooling flow
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoDeriveSchema'
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoDeriveSchema' but null was returned
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoDeriveSchema' in the pooling flow
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoDeriveFKs'
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoDeriveFKs' but null was returned
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoDeriveFKs' in the pooling flow
                        === 2016-04-25 20:19:12,480 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useLocalValidators'
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useLocalValidators' but null was returned
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useLocalValidators' in the pooling flow
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoDeriveTitles'
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoDeriveTitles' but null was returned
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoDeriveTitles' in the pooling flow
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'qualifyColumnNames'
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'qualifyColumnNames' but null was returned
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'qualifyColumnNames' in the pooling flow
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'validateRelatedRecords'
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'validateRelatedRecords' but null was returned
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'validateRelatedRecords' in the pooling flow
                        === 2016-04-25 20:19:12,481 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requiresAuthentication'
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requiresAuthentication' but null was returned
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requiresAuthentication' in the pooling flow
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requiresRole'
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requiresRole' but null was returned
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requiresRole' in the pooling flow
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requires'
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requires' but null was returned
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requires' in the pooling flow
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ownerIdField'
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ownerIdField' but null was returned
                        === 2016-04-25 20:19:12,482 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ownerIdField' in the pooling flow
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'guestUserId'
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'guestUserId' but null was returned
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'guestUserId' in the pooling flow
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'beanClassName'
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'beanClassName' but null was returned
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'beanClassName' in the pooling flow
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoJoinTransactions'
                        === 2016-04-25 20:19:12,483 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoJoinTransactions' but null was returned
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoJoinTransactions' in the pooling flow
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useAnsiJoins'
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useAnsiJoins' but null was returned
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useAnsiJoins' in the pooling flow
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useSpringTransaction'
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useSpringTransaction' but null was returned
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useSpringTransaction' in the pooling flow
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sparseUpdates'
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sparseUpdates' but null was returned
                        === 2016-04-25 20:19:12,484 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sparseUpdates' in the pooling flow
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'noNullUpdates'
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'noNullUpdates' but null was returned
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'noNullUpdates' in the pooling flow
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canExport'
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canExport' but null was returned
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canExport' in the pooling flow
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'progressiveLoading'
                        === 2016-04-25 20:19:12,485 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'progressiveLoading' but null was returned
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'progressiveLoading' in the pooling flow
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoConvertRelativeDates'
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoConvertRelativeDates' but null was returned
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoConvertRelativeDates' in the pooling flow
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'allowAdvancedCriteria'
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'allowAdvancedCriteria' but null was returned
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'allowAdvancedCriteria' in the pooling flow
                        === 2016-04-25 20:19:12,486 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'scriptImport'
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'scriptImport' but null was returned
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'scriptImport' in the pooling flow
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'script'
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'script' but null was returned
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'script' in the pooling flow
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'allowClientRequestedSummaries'
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'allowClientRequestedSummaries' but null was returned
                        === 2016-04-25 20:19:12,487 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'allowClientRequestedSummaries' in the pooling flow
                        === 2016-04-25 20:19:12,488 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'patternMultiWildcard'
                        === 2016-04-25 20:19:12,488 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'patternMultiWildcard' but null was returned
                        === 2016-04-25 20:19:12,488 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'patternMultiWildcard' in the pooling flow
                        === 2016-04-25 20:19:12,488 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'patternSingleWildcard'
                        === 2016-04-25 20:19:12,488 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'patternSingleWildcard' but null was returned
                        === 2016-04-25 20:19:12,488 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'patternSingleWildcard' in the pooling flow
                        === 2016-04-25 20:19:12,488 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'criteriaPolicy'
                        === 2016-04-25 20:19:12,489 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'criteriaPolicy' but null was returned
                        === 2016-04-25 20:19:12,489 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'criteriaPolicy' in the pooling flow
                        === 2016-04-25 20:19:12,489 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'substituteClasses'
                        === 2016-04-25 20:19:12,489 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'substituteClasses' but null was returned
                        === 2016-04-25 20:19:12,489 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'substituteClasses' in the pooling flow
                        === 2016-04-25 20:19:12,490 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'idClassName'
                        === 2016-04-25 20:19:12,490 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'idClassName' but null was returned
                        === 2016-04-25 20:19:12,490 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'idClassName' in the pooling flow
                        === 2016-04-25 20:19:12,491 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'supportTransactions'
                        === 2016-04-25 20:19:12,491 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'supportTransactions' but null was returned
                        === 2016-04-25 20:19:12,491 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'supportTransactions' in the pooling flow
                        === 2016-04-25 20:19:12,491 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'creatorOverrides'
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'creatorOverrides' but null was returned
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'creatorOverrides' in the pooling flow
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'loadParents'
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'loadParents' but null was returned
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'loadParents' in the pooling flow
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'loadID'
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'loadID' but null was returned
                        === 2016-04-25 20:19:12,492 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'loadID' in the pooling flow
                        === 2016-04-25 20:19:12,493 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'audit'
                        === 2016-04-25 20:19:12,493 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'audit' but null was returned
                        === 2016-04-25 20:19:12,493 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'audit' in the pooling flow
                        === 2016-04-25 20:19:12,493 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'auditDataSourceID'
                        === 2016-04-25 20:19:12,493 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'auditDataSourceID' but null was returned
                        === 2016-04-25 20:19:12,493 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'auditDataSourceID' in the pooling flow
                        === 2016-04-25 20:19:12,493 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'auditDSConstructor'
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'auditDSConstructor' but null was returned
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'auditDSConstructor' in the pooling flow
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'auditRevisionFieldName'
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'auditRevisionFieldName' but null was returned
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'auditRevisionFieldName' in the pooling flow
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'auditTimeStampFieldName'
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'auditTimeStampFieldName' but null was returned
                        === 2016-04-25 20:19:12,494 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'auditTimeStampFieldName' in the pooling flow
                        [B][/B]

                        Comment


                          #13
                          Server log part 2:
                          Code:
                          === 2016-04-25 20:19:12,495 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'auditTypeFieldName'
                          === 2016-04-25 20:19:12,495 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'auditTypeFieldName' but null was returned
                          === 2016-04-25 20:19:12,495 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'auditTypeFieldName' in the pooling flow
                          === 2016-04-25 20:19:12,495 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'auditUserFieldName'
                          === 2016-04-25 20:19:12,495 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'auditUserFieldName' but null was returned
                          === 2016-04-25 20:19:12,495 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'auditUserFieldName' in the pooling flow
                          === 2016-04-25 20:19:12,496 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoCreateAuditTable'
                          === 2016-04-25 20:19:12,496 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoCreateAuditTable' but null was returned
                          === 2016-04-25 20:19:12,496 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoCreateAuditTable' in the pooling flow
                          === 2016-04-25 20:19:12,496 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'inheritanceMode'
                          === 2016-04-25 20:19:12,496 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'inheritanceMode' but null was returned
                          === 2016-04-25 20:19:12,496 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'inheritanceMode' in the pooling flow
                          === 2016-04-25 20:19:12,496 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'quoteColumnNames'
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'quoteColumnNames' but null was returned
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'quoteColumnNames' in the pooling flow
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'generatedBy'
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'generatedBy' but null was returned
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'generatedBy' in the pooling flow
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useUTCDateTimes'
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useUTCDateTimes' but null was returned
                          === 2016-04-25 20:19:12,497 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useUTCDateTimes' in the pooling flow
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useOfflineStorage'
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useOfflineStorage' but null was returned
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useOfflineStorage' in the pooling flow
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'enumOrdinalProperty'
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'enumOrdinalProperty' but null was returned
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'enumOrdinalProperty' in the pooling flow
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'enumTranslateStrategy'
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'enumTranslateStrategy' but null was returned
                          === 2016-04-25 20:19:12,498 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'enumTranslateStrategy' in the pooling flow
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlFromConfig'
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlFromConfig' but null was returned
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlFromConfig' in the pooling flow
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'translatePatternOperators'
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'translatePatternOperators' but null was returned
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'translatePatternOperators' in the pooling flow
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fileNameField'
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fileNameField' but null was returned
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fileNameField' in the pooling flow
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fileTypeField'
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fileTypeField' but null was returned
                          === 2016-04-25 20:19:12,499 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fileTypeField' in the pooling flow
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fileFormatField'
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fileFormatField' but null was returned
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fileFormatField' in the pooling flow
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fileSizeField'
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fileSizeField' but null was returned
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fileSizeField' in the pooling flow
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fileLastModifiedField'
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fileLastModifiedField' but null was returned
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fileLastModifiedField' in the pooling flow
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fileContentsField'
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fileContentsField' but null was returned
                          === 2016-04-25 20:19:12,500 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fileContentsField' in the pooling flow
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'projectFileKey'
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'projectFileKey' but null was returned
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'projectFileKey' in the pooling flow
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'projectFileLocations'
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'projectFileLocations' but null was returned
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'projectFileLocations' in the pooling flow
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'defaultTextMatchStyle'
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'defaultTextMatchStyle' but null was returned
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'defaultTextMatchStyle' in the pooling flow
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ignoreTextMatchStyleCaseSensitive'
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ignoreTextMatchStyleCaseSensitive' but null was returned
                          === 2016-04-25 20:19:12,501 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ignoreTextMatchStyleCaseSensitive' in the pooling flow
                          === 2016-04-25 20:19:12,502 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'defaultMultiUpdatePolicy'
                          === 2016-04-25 20:19:12,502 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'defaultMultiUpdatePolicy' but null was returned
                          === 2016-04-25 20:19:12,502 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'defaultMultiUpdatePolicy' in the pooling flow
                          === 2016-04-25 20:19:12,505 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 3 of type 'DataSource' and assigned it to thread qtp239937174-36
                          === 2016-04-25 20:19:12,505 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 3 of type 'DataSource' in the pooling flow
                          === 2016-04-25 20:19:12,505 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 3 of type 'DataSource'
                          === 2016-04-25 20:19:12,524 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'DataSourceField'
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\builtinds\sc\system\schema\DataSourceField.ds.xml: 4ms
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Object'
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 4 of type 'Object' and assigned it to thread qtp239937174-36
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 4 of type 'Object' in the pooling flow
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 4 of type 'Object'
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fields'
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fields' but null was returned
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fields' in the pooling flow
                          === 2016-04-25 20:19:12,529 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'name'
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'name' but null was returned
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'name' in the pooling flow
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'type'
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'type' but null was returned
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'type' in the pooling flow
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'disabled'
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'disabled' but null was returned
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'disabled' in the pooling flow
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'idAllowed'
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'idAllowed' but null was returned
                          === 2016-04-25 20:19:12,530 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'idAllowed' in the pooling flow
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'required'
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'required' but null was returned
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'required' in the pooling flow
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueMap'
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueMap' but null was returned
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueMap' in the pooling flow
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'validators'
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'validators' but null was returned
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'validators' in the pooling flow
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'length'
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'length' but null was returned
                          === 2016-04-25 20:19:12,531 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'length' in the pooling flow
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'decimalPad'
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'decimalPad' but null was returned
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'decimalPad' in the pooling flow
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'decimalPrecision'
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'decimalPrecision' but null was returned
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'decimalPrecision' in the pooling flow
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlRequired'
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlRequired' but null was returned
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlRequired' in the pooling flow
                          === 2016-04-25 20:19:12,532 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlMaxOccurs'
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlMaxOccurs' but null was returned
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlMaxOccurs' in the pooling flow
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlMinOccurs'
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlMinOccurs' but null was returned
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlMinOccurs' in the pooling flow
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlNonEmpty'
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlNonEmpty' but null was returned
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlNonEmpty' in the pooling flow
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xsElementRef'
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xsElementRef' but null was returned
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xsElementRef' in the pooling flow
                          === 2016-04-25 20:19:12,533 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canHide'
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canHide' but null was returned
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canHide' in the pooling flow
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlAttribute'
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlAttribute' but null was returned
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlAttribute' in the pooling flow
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'mustQualify'
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'mustQualify' but null was returned
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'mustQualify' in the pooling flow
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlExplicitTypes'
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlExplicitTypes' but null was returned
                          === 2016-04-25 20:19:12,534 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlExplicitTypes' in the pooling flow
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueXPath'
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueXPath' but null was returned
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueXPath' in the pooling flow
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'childrenProperty'
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'childrenProperty' but null was returned
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'childrenProperty' in the pooling flow
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'title'
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'title' but null was returned
                          === 2016-04-25 20:19:12,535 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'title' in the pooling flow
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'prompt'
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'prompt' but null was returned
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'prompt' in the pooling flow
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'detail'
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'detail' but null was returned
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'detail' in the pooling flow
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canEdit'
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canEdit' but null was returned
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canEdit' in the pooling flow
                          === 2016-04-25 20:19:12,536 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canSave'
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canSave' but null was returned
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canSave' in the pooling flow
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canView'
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canView' but null was returned
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canView' in the pooling flow
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'inapplicable'
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'inapplicable' but null was returned
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'inapplicable' in the pooling flow
                          === 2016-04-25 20:19:12,537 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'advanced'
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'advanced' but null was returned
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'advanced' in the pooling flow
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'visibility'
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'visibility' but null was returned
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'visibility' in the pooling flow
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'hidden'
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'hidden' but null was returned
                          === 2016-04-25 20:19:12,538 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'hidden' in the pooling flow
                          === 2016-04-25 20:19:12,539 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'isRuleCriteria'
                          === 2016-04-25 20:19:12,539 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'isRuleCriteria' but null was returned
                          === 2016-04-25 20:19:12,539 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'isRuleCriteria' in the pooling flow
                          === 2016-04-25 20:19:12,539 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'primaryKey'
                          === 2016-04-25 20:19:12,540 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'primaryKey' but null was returned
                          === 2016-04-25 20:19:12,540 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'primaryKey' in the pooling flow
                          === 2016-04-25 20:19:12,540 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'foreignKey'
                          === 2016-04-25 20:19:12,541 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'foreignKey' but null was returned
                          === 2016-04-25 20:19:12,541 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'foreignKey' in the pooling flow
                          === 2016-04-25 20:19:12,541 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'joinType'
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'joinType' but null was returned
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'joinType' in the pooling flow
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'rootValue'
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'rootValue' but null was returned
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'rootValue' in the pooling flow
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'includeFrom'
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'includeFrom' but null was returned
                          === 2016-04-25 20:19:12,542 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'includeFrom' in the pooling flow
                          === 2016-04-25 20:19:12,543 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'includeVia'
                          === 2016-04-25 20:19:12,543 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'includeVia' but null was returned
                          === 2016-04-25 20:19:12,543 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'includeVia' in the pooling flow
                          === 2016-04-25 20:19:12,543 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'relatedTableAlias'
                          === 2016-04-25 20:19:12,543 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'relatedTableAlias' but null was returned
                          === 2016-04-25 20:19:12,543 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'relatedTableAlias' in the pooling flow
                          === 2016-04-25 20:19:12,543 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'showFileInline'
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'showFileInline' but null was returned
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'showFileInline' in the pooling flow
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'escapeHTML'
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'escapeHTML' but null was returned
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'escapeHTML' in the pooling flow
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'imageWidth'
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'imageWidth' but null was returned
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'imageWidth' in the pooling flow
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'imageHeight'
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'imageHeight' but null was returned
                          === 2016-04-25 20:19:12,544 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'imageHeight' in the pooling flow
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'nativeName'
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'nativeName' but null was returned
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'nativeName' in the pooling flow
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'nativeFK'
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'nativeFK' but null was returned
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'nativeFK' in the pooling flow
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoDeriveFKs'
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoDeriveFKs' but null was returned
                          === 2016-04-25 20:19:12,545 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoDeriveFKs' in the pooling flow
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fieldName'
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fieldName' but null was returned
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fieldName' in the pooling flow
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'multiple'
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'multiple' but null was returned
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'multiple' in the pooling flow
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'validateEachItem'
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'validateEachItem' but null was returned
                          === 2016-04-25 20:19:12,546 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'validateEachItem' in the pooling flow
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'pickListFields'
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'pickListFields' but null was returned
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'pickListFields' in the pooling flow
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'multipleStorage'
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'multipleStorage' but null was returned
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'multipleStorage' in the pooling flow
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canFilter'
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canFilter' but null was returned
                          === 2016-04-25 20:19:12,547 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canFilter' in the pooling flow
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ignore'
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ignore' but null was returned
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ignore' in the pooling flow
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'unknownType'
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'unknownType' but null was returned
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'unknownType' in the pooling flow
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canSortClientOnly'
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canSortClientOnly' but null was returned
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canSortClientOnly' in the pooling flow
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'childTagName'
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'childTagName' but null was returned
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'childTagName' in the pooling flow
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'basic'
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'basic' but null was returned
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'basic' in the pooling flow
                          === 2016-04-25 20:19:12,548 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'maxFileSize'
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'maxFileSize' but null was returned
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'maxFileSize' in the pooling flow
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'frozen'
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'frozen' but null was returned
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'frozen' in the pooling flow
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canExport'
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canExport' but null was returned
                          === 2016-04-25 20:19:12,549 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canExport' in the pooling flow
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'exportTitle'
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'exportTitle' but null was returned
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'exportTitle' in the pooling flow
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sqlStorageStrategy'
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sqlStorageStrategy' but null was returned
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sqlStorageStrategy' in the pooling flow
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'encodeInResponse'
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'encodeInResponse' but null was returned
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'encodeInResponse' in the pooling flow
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'mimeType'
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'mimeType' but null was returned
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'mimeType' in the pooling flow
                          === 2016-04-25 20:19:12,550 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ignoreTextMatchStyle'
                          === 2016-04-25 20:19:12,551 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ignoreTextMatchStyle' but null was returned
                          === 2016-04-25 20:19:12,551 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ignoreTextMatchStyle' in the pooling flow
                          === 2016-04-25 20:19:12,551 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'lenientXPath'
                          === 2016-04-25 20:19:12,551 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'lenientXPath' but null was returned
                          === 2016-04-25 20:19:12,551 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'lenientXPath' in the pooling flow
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'summaryFunction'
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'summaryFunction' but null was returned
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'summaryFunction' in the pooling flow
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'includeSummaryFunction'
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'includeSummaryFunction' but null was returned
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'includeSummaryFunction' in the pooling flow
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'joinString'
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'joinString' but null was returned
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'joinString' in the pooling flow
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'joinPrefix'
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'joinPrefix' but null was returned
                          === 2016-04-25 20:19:12,552 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'joinPrefix' in the pooling flow
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'joinSuffix'
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'joinSuffix' but null was returned
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'joinSuffix' in the pooling flow
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'allowClientRequestedSummaries'
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'allowClientRequestedSummaries' but null was returned
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'allowClientRequestedSummaries' in the pooling flow
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'defaultValue'
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'defaultValue' but null was returned
                          === 2016-04-25 20:19:12,553 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'defaultValue' in the pooling flow
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'group'
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'group' but null was returned
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'group' in the pooling flow
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ID'
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ID' but null was returned
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ID' in the pooling flow
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'inheritsFrom'
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'inheritsFrom' but null was returned
                          === 2016-04-25 20:19:12,554 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'inheritsFrom' in the pooling flow
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'javaClass'
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'javaClass' but null was returned
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'javaClass' in the pooling flow
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'javaCollectionClass'
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'javaCollectionClass' but null was returned
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'javaCollectionClass' in the pooling flow
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'javaKeyClass'
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'javaKeyClass' but null was returned
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'javaKeyClass' in the pooling flow
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'storeWithHash'
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'storeWithHash' but null was returned
                          === 2016-04-25 20:19:12,555 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'storeWithHash' in the pooling flow
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sqlDateFormat'
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sqlDateFormat' but null was returned
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sqlDateFormat' in the pooling flow
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'storeMilliseconds'
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'storeMilliseconds' but null was returned
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'storeMilliseconds' in the pooling flow
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'initRequiresAuthentication'
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'initRequiresAuthentication' but null was returned
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'initRequiresAuthentication' in the pooling flow
                          === 2016-04-25 20:19:12,556 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'viewRequiresAuthentication'
                          === 2016-04-25 20:19:12,557 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'viewRequiresAuthentication' but null was returned
                          === 2016-04-25 20:19:12,557 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'viewRequiresAuthentication' in the pooling flow
                          === 2016-04-25 20:19:12,557 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'editRequiresAuthentication'
                          === 2016-04-25 20:19:12,557 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'editRequiresAuthentication' but null was returned
                          === 2016-04-25 20:19:12,557 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'editRequiresAuthentication' in the pooling flow
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'updateRequiresAuthentication'
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'updateRequiresAuthentication' but null was returned
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'updateRequiresAuthentication' in the pooling flow
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'initRequiresRole'
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'initRequiresRole' but null was returned
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'initRequiresRole' in the pooling flow
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'viewRequiresRole'
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'viewRequiresRole' but null was returned
                          === 2016-04-25 20:19:12,558 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'viewRequiresRole' in the pooling flow
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'editRequiresRole'
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'editRequiresRole' but null was returned
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'editRequiresRole' in the pooling flow
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'updateRequiresRole'
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'updateRequiresRole' but null was returned
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'updateRequiresRole' in the pooling flow
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'initRequires'
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'initRequires' but null was returned
                          === 2016-04-25 20:19:12,559 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'initRequires' in the pooling flow
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'viewRequires'
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'viewRequires' but null was returned
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'viewRequires' in the pooling flow
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'editRequires'
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'editRequires' but null was returned
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'editRequires' in the pooling flow
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'updateRequires'
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'updateRequires' but null was returned
                          === 2016-04-25 20:19:12,560 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'updateRequires' in the pooling flow
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customSelectExpression'
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customSelectExpression' but null was returned
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customSelectExpression' in the pooling flow
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customCriteriaExpression'
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customCriteriaExpression' but null was returned
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customCriteriaExpression' in the pooling flow
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customInsertExpression'
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customInsertExpression' but null was returned
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customInsertExpression' in the pooling flow
                          === 2016-04-25 20:19:12,561 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customUpdateExpression'
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customUpdateExpression' but null was returned
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customUpdateExpression' in the pooling flow
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customSQL'
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customSQL' but null was returned
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customSQL' in the pooling flow
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoQuoteCustomExpressions'
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoQuoteCustomExpressions' but null was returned
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoQuoteCustomExpressions' in the pooling flow
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'creatorOverrides'
                          === 2016-04-25 20:19:12,562 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'creatorOverrides' but null was returned
                          === 2016-04-25 20:19:12,563 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'creatorOverrides' in the pooling flow
                          === 2016-04-25 20:19:12,563 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueWriteXPath'
                          === 2016-04-25 20:19:12,563 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueWriteXPath' but null was returned
                          === 2016-04-25 20:19:12,563 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueWriteXPath' in the pooling flow
                          === 2016-04-25 20:19:12,563 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useJoin'
                          === 2016-04-25 20:19:12,563 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useJoin' but null was returned
                          === 2016-04-25 20:19:12,563 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useJoin' in the pooling flow
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'tableName'
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'tableName' but null was returned
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'tableName' in the pooling flow
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'multipleStorageSeparator'
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'multipleStorageSeparator' but null was returned
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'multipleStorageSeparator' in the pooling flow
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'defineSQLColumnAsNotNull'
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'defineSQLColumnAsNotNull' but null was returned
                          === 2016-04-25 20:19:12,564 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'defineSQLColumnAsNotNull' in the pooling flow
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueMapEnum'
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueMapEnum' but null was returned
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueMapEnum' in the pooling flow
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sqlFalseValue'
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sqlFalseValue' but null was returned
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sqlFalseValue' in the pooling flow
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sqlTrueValue'
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sqlTrueValue' but null was returned
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sqlTrueValue' in the pooling flow
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sortByField'
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sortByField' but null was returned
                          === 2016-04-25 20:19:12,565 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sortByField' in the pooling flow
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'columnCode'
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'columnCode' but null was returned
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'columnCode' in the pooling flow
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'stringInBrowser'
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'stringInBrowser' but null was returned
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'stringInBrowser' in the pooling flow
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'nillable'
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'nillable' but null was returned
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'nillable' in the pooling flow
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'validOperators'
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'validOperators' but null was returned
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'validOperators' in the pooling flow
                          === 2016-04-25 20:19:12,566 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fieldTypeProperty'
                          === 2016-04-25 20:19:12,567 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fieldTypeProperty' but null was returned
                          === 2016-04-25 20:19:12,567 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fieldTypeProperty' in the pooling flow
                          === 2016-04-25 20:19:12,567 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'moveTo'
                          === 2016-04-25 20:19:12,567 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'moveTo' but null was returned
                          === 2016-04-25 20:19:12,567 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'moveTo' in the pooling flow
                          === 2016-04-25 20:19:12,568 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 5 of type 'DataSourceField' and assigned it to thread qtp239937174-36
                          === 2016-04-25 20:19:12,568 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 5 of type 'DataSourceField' in the pooling flow
                          === 2016-04-25 20:19:12,568 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 5 of type 'DataSourceField'
                          === 2016-04-25 20:19:12,568 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'field'
                          === 2016-04-25 20:19:12,568 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'field' but null was returned
                          === 2016-04-25 20:19:12,568 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'field' in the pooling flow
                          === 2016-04-25 20:19:12,570 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ValueMap'
                          === 2016-04-25 20:19:12,571 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\builtinds\sc\system\schema\ValueMap.ds.xml: 1ms
                          === 2016-04-25 20:19:12,571 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Object'
                          === 2016-04-25 20:19:12,571 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 6 of type 'Object' and assigned it to thread qtp239937174-36
                          === 2016-04-25 20:19:12,571 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 6 of type 'Object' in the pooling flow
                          === 2016-04-25 20:19:12,571 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 6 of type 'Object'
                          === 2016-04-25 20:19:12,573 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 7 of type 'ValueMap' and assigned it to thread qtp239937174-36
                          === 2016-04-25 20:19:12,573 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 7 of type 'ValueMap' in the pooling flow
                          === 2016-04-25 20:19:12,573 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 7 of type 'ValueMap'
                          === 2016-04-25 20:19:12,575 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Validator'
                          === 2016-04-25 20:19:12,577 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\builtinds\sc\system\schema\Validator.ds.xml: 1ms
                          === 2016-04-25 20:19:12,577 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Object'
                          === 2016-04-25 20:19:12,577 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 8 of type 'Object' and assigned it to thread qtp239937174-36
                          === 2016-04-25 20:19:12,577 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 8 of type 'Object' in the pooling flow
                          === 2016-04-25 20:19:12,577 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 8 of type 'Object'
                          === 2016-04-25 20:19:12,577 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fields'
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fields' but null was returned
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fields' in the pooling flow
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'type'
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'type' but null was returned
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'type' in the pooling flow
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'name'
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'name' but null was returned
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'name' in the pooling flow
                          === 2016-04-25 20:19:12,578 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'description'
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'description' but null was returned
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'description' in the pooling flow
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'stopIfFalse'
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'stopIfFalse' but null was returned
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'stopIfFalse' in the pooling flow
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'stopOnError'
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'stopOnError' but null was returned
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'stopOnError' in the pooling flow
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'validateOnChange'
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'validateOnChange' but null was returned
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'validateOnChange' in the pooling flow
                          === 2016-04-25 20:19:12,579 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'clientOnly'
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'clientOnly' but null was returned
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'clientOnly' in the pooling flow
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'errorMessage'
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'errorMessage' but null was returned
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'errorMessage' in the pooling flow
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'max'
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'max' but null was returned
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'max' in the pooling flow
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'min'
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'min' but null was returned
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'min' in the pooling flow
                          === 2016-04-25 20:19:12,580 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'exclusive'[B][/B]

                          Comment


                            #14
                            Server log part 3/3:
                            Code:
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'exclusive' but null was returned
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'exclusive' in the pooling flow
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'mask'
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'mask' but null was returned
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'mask' in the pooling flow
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'transformTo'
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'transformTo' but null was returned
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'transformTo' in the pooling flow
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'precision'
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'precision' but null was returned
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'precision' in the pooling flow
                            === 2016-04-25 20:19:12,581 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'otherField'
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'otherField' but null was returned
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'otherField' in the pooling flow
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'list'
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'list' but null was returned
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'list' in the pooling flow
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueMap'
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueMap' but null was returned
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueMap' in the pooling flow
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'substring'
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'substring' but null was returned
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'substring' in the pooling flow
                            === 2016-04-25 20:19:12,582 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'operator'
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'operator' but null was returned
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'operator' in the pooling flow
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'count'
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'count' but null was returned
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'count' in the pooling flow
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'applyWhen'
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'applyWhen' but null was returned
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'applyWhen' in the pooling flow
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dependentFields'
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dependentFields' but null was returned
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dependentFields' in the pooling flow
                            === 2016-04-25 20:19:12,583 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'scriptImport'
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'scriptImport' but null was returned
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'scriptImport' in the pooling flow
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serverCondition'
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serverCondition' but null was returned
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serverCondition' in the pooling flow
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serverObject'
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serverObject' but null was returned
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serverObject' in the pooling flow
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fieldName'
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fieldName' but null was returned
                            === 2016-04-25 20:19:12,584 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fieldName' in the pooling flow
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'triggerEvent'
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'triggerEvent' but null was returned
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'triggerEvent' in the pooling flow
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'message'
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'message' but null was returned
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'message' in the pooling flow
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'severity'
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'severity' but null was returned
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'severity' in the pooling flow
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'displayMode'
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'displayMode' but null was returned
                            === 2016-04-25 20:19:12,585 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'displayMode' in the pooling flow
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'duration'
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'duration' but null was returned
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'duration' in the pooling flow
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'formula'
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'formula' but null was returned
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'formula' in the pooling flow
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'formulaVars'
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'formulaVars' but null was returned
                            === 2016-04-25 20:19:12,586 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'formulaVars' in the pooling flow
                            === 2016-04-25 20:19:12,587 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 9 of type 'Validator' and assigned it to thread qtp239937174-36
                            === 2016-04-25 20:19:12,587 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 9 of type 'Validator' in the pooling flow
                            === 2016-04-25 20:19:12,587 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 9 of type 'Validator'
                            === 2016-04-25 20:19:12,587 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'validator'
                            === 2016-04-25 20:19:12,587 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'validator' but null was returned
                            === 2016-04-25 20:19:12,587 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'validator' in the pooling flow
                            === 2016-04-25 20:19:12,588 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'operationBinding'
                            === 2016-04-25 20:19:12,588 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'operationBinding' but null was returned
                            === 2016-04-25 20:19:12,588 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'operationBinding' in the pooling flow
                            === 2016-04-25 20:19:12,588 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'OperationBinding'
                            === 2016-04-25 20:19:12,591 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\builtinds\sc\system\schema\OperationBinding.ds.xml: 3ms
                            === 2016-04-25 20:19:12,591 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Object'
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 10 of type 'Object' and assigned it to thread qtp239937174-36
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 10 of type 'Object' in the pooling flow
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 10 of type 'Object'
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fields'
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fields' but null was returned
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fields' in the pooling flow
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'operationType'
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'operationType' but null was returned
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'operationType' in the pooling flow
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customSQL'
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customSQL' but null was returned
                            === 2016-04-25 20:19:12,592 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customSQL' in the pooling flow
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customHQL'
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customHQL' but null was returned
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customHQL' in the pooling flow
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customJQL'
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customJQL' but null was returned
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customJQL' in the pooling flow
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'groupClause'
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'groupClause' but null was returned
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'groupClause' in the pooling flow
                            === 2016-04-25 20:19:12,593 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'orderClause'
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'orderClause' but null was returned
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'orderClause' in the pooling flow
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'selectClause'
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'selectClause' but null was returned
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'selectClause' in the pooling flow
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'tableClause'
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'tableClause' but null was returned
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'tableClause' in the pooling flow
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valuesClause'
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valuesClause' but null was returned
                            === 2016-04-25 20:19:12,594 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valuesClause' in the pooling flow
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'whereClause'
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'whereClause' but null was returned
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'whereClause' in the pooling flow
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'valueMap'
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'valueMap' but null was returned
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'valueMap' in the pooling flow
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataFormat'
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataFormat' but null was returned
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataFormat' in the pooling flow
                            === 2016-04-25 20:19:12,595 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'wsOperation'
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'wsOperation' but null was returned
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'wsOperation' in the pooling flow
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'recordName'
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'recordName' but null was returned
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'recordName' in the pooling flow
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'recordXPath'
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'recordXPath' but null was returned
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'recordXPath' in the pooling flow
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dropExtraFields'
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dropExtraFields' but null was returned
                            === 2016-04-25 20:19:12,596 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dropExtraFields' in the pooling flow
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'responseDataSchema'
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'responseDataSchema' but null was returned
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'responseDataSchema' in the pooling flow
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'operationId'
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'operationId' but null was returned
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'operationId' in the pooling flow
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useFlatFields'
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useFlatFields' but null was returned
                            === 2016-04-25 20:19:12,597 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useFlatFields' in the pooling flow
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataURL'
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataURL' but null was returned
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataURL' in the pooling flow
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataTransport'
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataTransport' but null was returned
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataTransport' in the pooling flow
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'defaultParams'
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'defaultParams' but null was returned
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'defaultParams' in the pooling flow
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'soapAction'
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'soapAction' but null was returned
                            === 2016-04-25 20:19:12,598 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'soapAction' in the pooling flow
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'dataProtocol'
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'dataProtocol' but null was returned
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'dataProtocol' in the pooling flow
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'callbackParam'
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'callbackParam' but null was returned
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'callbackParam' in the pooling flow
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requestProperties'
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requestProperties' but null was returned
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requestProperties' in the pooling flow
                            === 2016-04-25 20:19:12,599 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serverObject'
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serverObject' but null was returned
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serverObject' in the pooling flow
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'serverMethod'
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'serverMethod' but null was returned
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'serverMethod' in the pooling flow
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'methodArguments'
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'methodArguments' but null was returned
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'methodArguments' in the pooling flow
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'xmlNamespaces'
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'xmlNamespaces' but null was returned
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'xmlNamespaces' in the pooling flow
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'preventHTTPCaching'
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'preventHTTPCaching' but null was returned
                            === 2016-04-25 20:19:12,600 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'preventHTTPCaching' in the pooling flow
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'spoofResponses'
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'spoofResponses' but null was returned
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'spoofResponses' in the pooling flow
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'exportResults'
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'exportResults' but null was returned
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'exportResults' in the pooling flow
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'exportDatesAsFormattedString'
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'exportDatesAsFormattedString' but null was returned
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'exportDatesAsFormattedString' in the pooling flow
                            === 2016-04-25 20:19:12,601 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'exportAs'
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'exportAs' but null was returned
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'exportAs' in the pooling flow
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'exportFilename'
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'exportFilename' but null was returned
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'exportFilename' in the pooling flow
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'lineBreakStyle'
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'lineBreakStyle' but null was returned
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'lineBreakStyle' in the pooling flow
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useForCacheSync'
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useForCacheSync' but null was returned
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useForCacheSync' in the pooling flow
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'canSyncCache'
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'canSyncCache' but null was returned
                            === 2016-04-25 20:19:12,602 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'canSyncCache' in the pooling flow
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'allowMultiUpdate'
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'allowMultiUpdate' but null was returned
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'allowMultiUpdate' in the pooling flow
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'providesMissingKeys'
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'providesMissingKeys' but null was returned
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'providesMissingKeys' in the pooling flow
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requiresAuthentication'
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requiresAuthentication' but null was returned
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requiresAuthentication' in the pooling flow
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requiresRole'
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requiresRole' but null was returned
                            === 2016-04-25 20:19:12,603 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requiresRole' in the pooling flow
                            === 2016-04-25 20:19:12,604 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'requires'
                            === 2016-04-25 20:19:12,604 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'requires' but null was returned
                            === 2016-04-25 20:19:12,604 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'requires' in the pooling flow
                            === 2016-04-25 20:19:12,604 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'ownerIdField'
                            === 2016-04-25 20:19:12,604 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'ownerIdField' but null was returned
                            === 2016-04-25 20:19:12,604 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'ownerIdField' in the pooling flow
                            === 2016-04-25 20:19:12,604 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'guestUserId'
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'guestUserId' but null was returned
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'guestUserId' in the pooling flow
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'mail'
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'mail' but null was returned
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'mail' in the pooling flow
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'beanClassName'
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'beanClassName' but null was returned
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'beanClassName' in the pooling flow
                            === 2016-04-25 20:19:12,605 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'sqlType'
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'sqlType' but null was returned
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'sqlType' in the pooling flow
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'outputs'
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'outputs' but null was returned
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'outputs' in the pooling flow
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'autoJoinTransactions'
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'autoJoinTransactions' but null was returned
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'autoJoinTransactions' in the pooling flow
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'useSpringTransaction'
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'useSpringTransaction' but null was returned
                            === 2016-04-25 20:19:12,606 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'useSpringTransaction' in the pooling flow
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'progressiveLoading'
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'progressiveLoading' but null was returned
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'progressiveLoading' in the pooling flow
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'allowAdvancedCriteria'
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'allowAdvancedCriteria' but null was returned
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'allowAdvancedCriteria' in the pooling flow
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'scriptImport'
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'scriptImport' but null was returned
                            === 2016-04-25 20:19:12,607 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'scriptImport' in the pooling flow
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'script'
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'script' but null was returned
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'script' in the pooling flow
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'summaryFunctions'
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'summaryFunctions' but null was returned
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'summaryFunctions' in the pooling flow
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'groupBy'
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'groupBy' but null was returned
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'groupBy' in the pooling flow
                            === 2016-04-25 20:19:12,608 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'allowClientRequestedSummaries'
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'allowClientRequestedSummaries' but null was returned
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'allowClientRequestedSummaries' in the pooling flow
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'skipRowCount'
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'skipRowCount' but null was returned
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'skipRowCount' in the pooling flow
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'language'
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'language' but null was returned
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'language' in the pooling flow
                            === 2016-04-25 20:19:12,609 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'values'
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'values' but null was returned
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'values' in the pooling flow
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'criteria'
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'criteria' but null was returned
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'criteria' in the pooling flow
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'cacheSyncOperation'
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'cacheSyncOperation' but null was returned
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'cacheSyncOperation' in the pooling flow
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'relaxSecurityForCacheSync'
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'relaxSecurityForCacheSync' but null was returned
                            === 2016-04-25 20:19:12,610 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'relaxSecurityForCacheSync' in the pooling flow
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customCriteriaFields'
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customCriteriaFields' but null was returned
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customCriteriaFields' in the pooling flow
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'excludeCriteriaFields'
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'excludeCriteriaFields' but null was returned
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'excludeCriteriaFields' in the pooling flow
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customValueFields'
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customValueFields' but null was returned
                            === 2016-04-25 20:19:12,611 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customValueFields' in the pooling flow
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'creatorOverrides'
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'creatorOverrides' but null was returned
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'creatorOverrides' in the pooling flow
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'qualifyColumnNames'
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'qualifyColumnNames' but null was returned
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'qualifyColumnNames' in the pooling flow
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'customFields'
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'customFields' but null was returned
                            === 2016-04-25 20:19:12,612 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'customFields' in the pooling flow
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'skipAudit'
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'skipAudit' but null was returned
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'skipAudit' in the pooling flow
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'type'
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'type' but null was returned
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'type' in the pooling flow
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'types'
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'types' but null was returned
                            === 2016-04-25 20:19:12,613 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'types' in the pooling flow
                            === 2016-04-25 20:19:12,615 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 11 of type 'OperationBinding' and assigned it to thread qtp239937174-36
                            === 2016-04-25 20:19:12,615 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 11 of type 'OperationBinding' in the pooling flow
                            === 2016-04-25 20:19:12,615 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 11 of type 'OperationBinding'
                            === 2016-04-25 20:19:12,615 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Mail'
                            === 2016-04-25 20:19:12,616 [4-36] DEBUG XML - Parsed XML from C:\Users\ST\workspace\lib\smartgwtpower-5.1p\samples\built-in-ds\war\builtinds\sc\system\schema\Mail.ds.xml: 1ms
                            === 2016-04-25 20:19:12,617 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'Object'
                            === 2016-04-25 20:19:12,617 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 12 of type 'Object' and assigned it to thread qtp239937174-36
                            === 2016-04-25 20:19:12,617 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 12 of type 'Object' in the pooling flow
                            === 2016-04-25 20:19:12,617 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 12 of type 'Object'
                            === 2016-04-25 20:19:12,617 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'fields'
                            === 2016-04-25 20:19:12,617 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'fields' but null was returned
                            === 2016-04-25 20:19:12,617 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'fields' in the pooling flow
                            === 2016-04-25 20:19:12,618 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'templateFile'
                            === 2016-04-25 20:19:12,618 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'templateFile' but null was returned
                            === 2016-04-25 20:19:12,618 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'templateFile' in the pooling flow
                            === 2016-04-25 20:19:12,618 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'multiple'
                            === 2016-04-25 20:19:12,618 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'multiple' but null was returned
                            === 2016-04-25 20:19:12,618 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'multiple' in the pooling flow
                            === 2016-04-25 20:19:12,618 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'to'
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'to' but null was returned
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'to' in the pooling flow
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'from'
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'from' but null was returned
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'from' in the pooling flow
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'replyTo'
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'replyTo' but null was returned
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'replyTo' in the pooling flow
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'cc'
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'cc' but null was returned
                            === 2016-04-25 20:19:12,619 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'cc' in the pooling flow
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'bcc'
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'bcc' but null was returned
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'bcc' in the pooling flow
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'subject'
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'subject' but null was returned
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'subject' in the pooling flow
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 13 of type 'Mail' and assigned it to thread qtp239937174-36
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 13 of type 'Mail' in the pooling flow
                            === 2016-04-25 20:19:12,620 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 13 of type 'Mail'
                            === 2016-04-25 20:19:12,621 [4-36] DEBUG ISCKeyedObjectPool - Borrowing object for 'mail'
                            === 2016-04-25 20:19:12,621 [4-36] DEBUG PoolableDataSourceFactory - Tried to create DataSource  of type 'mail' but null was returned
                            === 2016-04-25 20:19:12,621 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource null of type 'mail' in the pooling flow
                            === 2016-04-25 20:19:12,643 [4-36] DEBUG SQLDataSource - DataSource 14 acquired SQLDriver instance 1863749638 during initialization
                            === 2016-04-25 20:19:12,643 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 14 of type 'supplyItem' and assigned it to thread qtp239937174-36
                            === 2016-04-25 20:19:12,643 [4-36] DEBUG PoolableDataSourceFactory - Created DataSource 14 of type 'supplyItem' in the pooling flow
                            === 2016-04-25 20:19:12,643 [4-36] DEBUG PoolableDataSourceFactory - Activated DataSource 14 of type 'supplyItem'
                            === 2016-04-25 20:19:12,643 [4-36] DEBUG DSRequest - Caching instance 14 of DS 'supplyItem' from DSRequest.getDataSource()
                            === 2016-04-25 20:19:12,643 [4-36] DEBUG DSRequest - Caching instance 14 of DS supplyItem
                            === 2016-04-25 20:19:12,648 [4-36] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
                            === 2016-04-25 20:19:12,648 [4-36] DEBUG DeclarativeSecurity - Request is not a client request, ignoring security checks.
                            === 2016-04-25 20:19:12,653 [4-36] DEBUG AppBase - [builtinApplication.writeMail] No userTypes defined, allowing anyone access to all operations for this application
                            === 2016-04-25 20:19:12,653 [4-36] DEBUG AppBase - [builtinApplication.writeMail] No public zero-argument method named '_writeMail' found, performing generic datasource operation
                            === 2016-04-25 20:19:12,655 [4-36] INFO  SQLDataSource - [builtinApplication.writeMail] Performing fetch operation with
                                criteria: {itemID:1}    values: {itemID:1}
                            === 2016-04-25 20:19:12,671 [4-36] INFO  SQLDataSource - [builtinApplication.writeMail] derived query: SELECT $defaultSelectClause FROM $defaultTableClause WHERE $defaultWhereClause
                            === 2016-04-25 20:19:12,771 [4-36] DEBUG Velocity - [builtinApplication.writeMail] Velocity config: {
                            }
                            === 2016-04-25 20:19:12,834 [4-36] INFO  Velocity - [builtinApplication.writeMail] Velocity Tools available, support enabled.
                            === 2016-04-25 20:19:12,843 [4-36] INFO  SQLDataSource - [builtinApplication.writeMail] 14: Executing SQL query on 'Oracle': SELECT supplyItem.itemID, supplyItem.itemName, supplyItem.SKU, supplyItem.description, supplyItem.description_clob, supplyItem.category, supplyItem.units, supplyItem.unitCost, supplyItem.inStock, supplyItem.nextShipment FROM supplyItem WHERE (supplyItem.itemID=1)
                            === 2016-04-25 20:19:12,919 [4-36] INFO  PoolManager - [builtinApplication.writeMail] SmartClient pooling started for 'Oracle' objects
                            === 2016-04-25 20:19:12,919 [4-36] DEBUG PoolableSQLConnectionFactory - [builtinApplication.writeMail] Initializing SQL config for 'Oracle' from system config - using DataSource:  oracle.jdbc.pool.OracleDataSource
                            === 2016-04-25 20:19:12,946 [4-36] INFO  DataTools - [builtinApplication.writeMail] setProperties: couldn't set:
                            {
                                context:"No such property"
                            }
                            === 2016-04-25 20:19:13,069 [4-36] DEBUG PoolableSQLConnectionFactory - [builtinApplication.writeMail] makeObject() created a pooled Connection '225649224'
                            === 2016-04-25 20:19:13,107 [4-36] DEBUG PoolableSQLConnectionFactory - [builtinApplication.writeMail] Executing pingTest 'select 1 from dual' on connection 225649224
                            === 2016-04-25 20:19:13,116 [4-36] DEBUG SQLConnectionManager - [builtinApplication.writeMail] Borrowed connection '225649224'
                            === 2016-04-25 20:19:13,116 [4-36] INFO  SQLDriver - [builtinApplication.writeMail] Executing SQL query on 'Oracle' using connection '225649224': SELECT supplyItem.itemID, supplyItem.itemName, supplyItem.SKU, supplyItem.description, supplyItem.description_clob, supplyItem.category, supplyItem.units, supplyItem.unitCost, supplyItem.inStock, supplyItem.nextShipment FROM supplyItem WHERE (supplyItem.itemID=1)
                            === 2016-04-25 20:19:13,144 [4-36] INFO  MailMessage - trying to connect to REMOVED
                            === 2016-04-25 20:19:14,992 [4-36] INFO  DSResponse - DSResponse: List with 1 items
                            === 2016-04-25 20:19:14,992 [4-36] DEBUG DSRequest - freeOnExecute is false for request of type fetch on DataSource supplyItem - not freeing resources![B][/B]

                            Comment


                              #15
                              This is fixed now and is available in nightly builds since Apr 29 (today). Please let us know how it works for you.

                              Comment

                              Working...
                              X