Announcement

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

    Multiple RPCRequests with params attribute in one transaction - merging

    hi,

    after! upgrade smartgwt 2.5 to 3.1 i get this ERROR / WARNING. Although I use "RPCManager.startQueue ()" and "RPCManager.sendQueue ();" but no params.

    What does this message mean, it's a bug in my code, or just a useless message?


    Code:
    23:51:25.826 [ERROR] [pay] 23:51:25.824:MUP2:WARN:RPCManager:Multiple RPCRequests with params attribute in one transaction - merging
    
    com.smartgwt.client.core.JsObject$SGWT_WARN: 23:51:25.824:MUP2:WARN:RPCManager:Multiple RPCRequests with params attribute in one transaction - merging
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:337)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:218)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:289)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:107)
        at com.smartgwt.client.rpc.RPCManager.sendQueue(RPCManager.java)
        at com.pay.client.pay.setUserInformationIntoCockpit(pay.java:312)
        at com.pay.client.view.login.LoginWindow.doLoginWithSelectedProfile(LoginWindow.java:227)
        at com.pay.client.view.login.LoginWindow$3.onClick(LoginWindow.java:185)
        at com.smartgwt.client.widgets.events.ClickEvent.dispatch(ClickEvent.java:101)
        at com.smartgwt.client.widgets.events.ClickEvent.dispatch(ClickEvent.java:1)
        at com.google.gwt.event.shared.GwtEvent.dispatch(GwtEvent.java:1)
        at com.google.web.bindery.event.shared.EventBus.dispatchEvent(EventBus.java:40)
        at com.google.web.bindery.event.shared.SimpleEventBus.doFire(SimpleEventBus.java:193)
        at com.google.web.bindery.event.shared.SimpleEventBus.fireEvent(SimpleEventBus.java:88)
        at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:127)
        at com.smartgwt.client.widgets.BaseWidget.fireEvent(BaseWidget.java:71)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:337)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:218)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
        at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:213)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:292)
        at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:546)
        at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:363)
        at java.lang.Thread.run(Thread.java:680)
    Used:
    OS: MacOS 10.8
    Browser: FF 9
    smartgwt: SNAPSHOT_v8.3d_2012-10-10/PowerEdition Deployment 2012-10-10
    gwt: 2.4

    best regards,
    timo

    #2
    It means basically what it says - HTTP parameters were added to a DSRequest or RPCRequest in a queue, and since a queue results in only one HTTP request, parameters from different requests had to be combined.

    Let us know if you have a way this can be reproduced when this warning clearly should not appear.

    Comment


      #3
      insert the code into your example buildinds.java and you get the error message.

      Code:
       
      RPCManager.startQueue();
      
      DataSource animalsDS = DataSource.get("animals");
      animalsDS.fetchData(null, new DSCallback() {
      	
      	@Override
      	public void execute(DSResponse response, Object rawData, DSRequest request) {
      		System.out.println("fetch animalsDS - ready");
      		
      	}
      });
      
      DataSource supplyItemDS = DataSource.get("supplyItem");
      supplyItemDS.fetchData(null, new DSCallback() {
      	
      	@Override
      	public void execute(DSResponse response, Object rawData, DSRequest request) {
      		System.out.println("fetch supplyItem - ready");
      		
      	}
      });
      
      
      DataSource employeesDS = DataSource.get("employees");
      employeesDS.fetchData(null, new DSCallback() {
      	
      	@Override
      	public void execute(DSResponse response, Object rawData, DSRequest request) {
      		System.out.println("fetch animals - ready");
      		
      	}
      });
      
      RPCManager.sendQueue();
      ErrorMessage:
      00:01:08,863 [ERROR] 21:03:56.456:WARN:RPCManager:Multiple RPCRequests with params attribute in one transaction - merging
      com.smartgwt.client.core.JsObject$SGWT_WARN: 21:03:56.456:WARN:RPCManager:Multiple RPCRequests with params attribute in one transaction - merging at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105) at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71) at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172) at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:292) at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:546) at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:363) at java.lang.Thread.run(Thread.java:722)



      FULL Eclipse Log:

      Code:
      Buildfile: /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/build.xml
      libs:
      javac:
          [javac] /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/build.xml:36: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
      hosted:
           [java] [Server@2596460e]: [Thread[main,5,main]]: checkRunning(false) entered
           [java] [Server@2596460e]: [Thread[main,5,main]]: checkRunning(false) exited
           [java] [Server@2596460e]: Startup sequence initiated from main() method
           [java] [Server@2596460e]: Loaded properties from [/Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/server.properties]
           [java] [Server@2596460e]: Initiating startup sequence...
           [java] [Server@2596460e]: Server socket opened successfully in 2 ms.
           [java] [Server@2596460e]: Database [index=0, id=0, db=file:/Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/WEB-INF/db/hsqldb/isomorphic, alias=isomorphic] opened sucessfully in 1608 ms.
           [java] [Server@2596460e]: Startup sequence completed in 1611 ms.
           [java] [Server@2596460e]: 2012-10-12 21:13:15.436 HSQLDB server 1.8.0 is online
           [java] [Server@2596460e]: To close normally, connect and execute SHUTDOWN SQL
           [java] [Server@2596460e]: From command line, use [Ctrl]+[C] to abort abruptly
           [java] ISC: Configuring log4j from: file:/Volumes/Macintosh%20HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/WEB-INF/classes/log4j.isc.config.xml
           [java] === 2012-10-12 21:13:15,657 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework initialization called from com.isomorphic.base.InitListener
           [java] === 2012-10-12 21:13:15,658 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework - Initializing
           [java] === 2012-10-12 21:13:15,665 [main] INFO  ConfigLoader - Attempting to load framework.properties from CLASSPATH
           [java] === 2012-10-12 21:13:15,992 [main] INFO  ConfigLoader - Successfully loaded framework.properties from CLASSPATH at location: jar:file:/Volumes/Macintosh%20HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/WEB-INF/lib/isomorphic_core_rpc.jar!/framework.properties
           [java] === 2012-10-12 21:13:15,992 [main] INFO  ConfigLoader - Attempting to load project.properties from CLASSPATH
           [java] === 2012-10-12 21:13:15,993 [main] INFO  ConfigLoader - Unable to locate project.properties in CLASSPATH
           [java] === 2012-10-12 21:13:16,192 [main] INFO  ConfigLoader - Successfully loaded isc_interfaces.properties from CLASSPATH at location: jar:file:/Volumes/Macintosh%20HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/WEB-INF/lib/isomorphic_core_rpc.jar!/isc_interfaces.properties
           [java] === 2012-10-12 21:13:16,192 [main] INFO  ConfigLoader - Attempting to load server.properties from CLASSPATH
           [java] === 2012-10-12 21:13:16,197 [main] INFO  ConfigLoader - Successfully loaded server.properties from CLASSPATH at location: file:/Volumes/Macintosh%20HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/WEB-INF/classes/server.properties
           [java] === 2012-10-12 21:13:16,207 [main] INFO  Logger - Logging system started.
           [java] === 2012-10-12 21:13:16,208 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework (SNAPSHOT_v8.3d_2012-10-10/PowerEdition Deployment 2012-10-10) - Initialization Complete
           [java] === 2012-10-12 21:13:16,209 [main] INFO  ISCInit - Auto-detected webRoot - using: /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war
           [java] log4j:WARN No appenders could be found for logger (org.apache.jasper.compiler.JspRuntimeContext).
           [java] log4j:WARN Please initialize the log4j system properly.
           [java] === 2012-10-12 21:13:16,230 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework initialization called from com.isomorphic.base.Base
           [java] === 2012-10-12 21:13:16,230 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework is already initialized
           [java] === 2012-10-12 21:13:16,338 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework initialization called from com.isomorphic.base.Init
           [java] === 2012-10-12 21:13:16,338 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework is already initialized
           [java] === 2012-10-12 21:13:42,846 [l0-0] INFO  RequestContext - URL: '/builtinds/sc/DataSourceLoader', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:42,946 [l0-0] INFO  PoolManager - SmartClient pooling disabled for 'supplyItem' objects
           [java] === 2012-10-12 21:13:42,969 [l0-2] INFO  Compression - /builtinds/sc/modules/ISC_Core.js: 781817 -> 204701 bytes
           [java] === 2012-10-12 21:13:43,084 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/schema/builtinTypes.xml: 28ms
           [java] === 2012-10-12 21:13:43,224 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/ds/supplyItem.ds.xml: 3ms
           [java] === 2012-10-12 21:13:43,244 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/schema/DataSource.ds.xml: 19ms
           [java] === 2012-10-12 21:13:43,397 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/schema/DataSourceField.ds.xml: 48ms
           [java] === 2012-10-12 21:13:43,449 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/schema/ValueMap.ds.xml: 2ms
           [java] === 2012-10-12 21:13:43,493 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/schema/Validator.ds.xml: 36ms
           [java] === 2012-10-12 21:13:43,697 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/ds/animals.ds.xml: 5ms
           [java] === 2012-10-12 21:13:43,726 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/ds/employees.ds.xml: 4ms
           [java] === 2012-10-12 21:13:43,743 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/schema/OperationBinding.ds.xml: 5ms
           [java] === 2012-10-12 21:13:54,745 [l0-0] INFO  RequestContext - URL: '/builtinds/sc/IDACall', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Host:127.0.0.1:8888
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Accept-Language:de-de,de;q=0.8,en-us;q=0.5,en;q=0.3
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Accept-Encoding:gzip, deflate
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.7
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Connection:keep-alive
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Referer:http://127.0.0.1:8888/BuiltInDS.html?gwt.codesvr=127.0.0.1:9997
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Cookie:GLog=%7B%0D%20%20%20%20left%3A468%2C%20%0D%20%20%20%20top%3A72%2C%20%0D%20%20%20%20width%3A1129%2C%20%0D%20%20%20%20height%3A819%2C%20%0D%20%20%20%20priorityDefaults%3A%7B%0D%20%20%20%20%20%20%20%20Log%3A5%0D%20%20%20%20%7D%2C%20%0D%20%20%20%20defaultPriority%3A3%2C%20%0D%20%20%20%20trackRPC%3Atrue%0D%7D; isc_cState=ready; JSESSIONID=cf072tjqhtw5
           [java] === 2012-10-12 21:13:54,751 [l0-0] DEBUG IDACall - Header Name:Value pair: Content-Type:application/x-www-form-urlencoded; charset=UTF-8
           [java] === 2012-10-12 21:13:54,752 [l0-0] DEBUG IDACall - Header Name:Value pair: Content-Length:1541
           [java] === 2012-10-12 21:13:54,752 [l0-0] DEBUG IDACall - Header Name:Value pair: Pragma:no-cache
           [java] === 2012-10-12 21:13:54,752 [l0-0] DEBUG IDACall - Header Name:Value pair: Cache-Control:no-cache
           [java] === 2012-10-12 21:13:54,752 [l0-0] DEBUG IDACall - session exists: null
           [java] === 2012-10-12 21:13:54,752 [l0-0] DEBUG IDACall - remote user: null
           [java] === 2012-10-12 21:13:54,791 [l0-0] DEBUG XML - Parsed XML from (in memory stream): 4ms
           [java] === 2012-10-12 21:13:54,794 [l0-0] DEBUG XML - Parsed XML from /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/schema/List.ds.xml: 2ms
           [java] === 2012-10-12 21:13:54,798 [l0-0] DEBUG RPCManager - Processing 3 requests.
           [java] === 2012-10-12 21:13:54,824 [l0-0] DEBUG RPCManager - Request #1 (DSRequest) payload: {
           [java]     criteria:{
           [java]     },
           [java]     operationConfig:{
           [java]         dataSource:"animals",
           [java]         operationType:"fetch"
           [java]     },
           [java]     appID:"builtinApplication",
           [java]     operation:"animals_fetch",
           [java]     oldValues:null
           [java] }
           [java] === 2012-10-12 21:13:54,825 [l0-0] DEBUG RPCManager - Request #2 (DSRequest) payload: {
           [java]     criteria:{
           [java]     },
           [java]     operationConfig:{
           [java]         dataSource:"supplyItem",
           [java]         operationType:"fetch"
           [java]     },
           [java]     appID:"builtinApplication",
           [java]     operation:"supplyItem_fetch",
           [java]     oldValues:null
           [java] }
           [java] === 2012-10-12 21:13:54,827 [l0-0] DEBUG RPCManager - Request #3 (DSRequest) payload: {
           [java]     criteria:{
           [java]     },
           [java]     operationConfig:{
           [java]         dataSource:"employees",
           [java]         operationType:"fetch"
           [java]     },
           [java]     appID:"builtinApplication",
           [java]     operation:"employees_fetch",
           [java]     oldValues:null
           [java] }
           [java] === 2012-10-12 21:13:54,833 [l0-0] INFO  IDACall - Performing 3 operation(s)
           [java] === 2012-10-12 21:13:54,833 [l0-0] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
           [java] === 2012-10-12 21:13:54,833 [l0-0] DEBUG DeclarativeSecurity - DataSource animals is not in the pre-checked list, processing...
           [java] === 2012-10-12 21:13:54,846 [l0-0] DEBUG AppBase - [builtinApplication.animals_fetch] No userTypes defined, allowing anyone access to all operations for this application
           [java] === 2012-10-12 21:13:54,846 [l0-0] DEBUG AppBase - [builtinApplication.animals_fetch] No public zero-argument method named '_animals_fetch' found, performing generic datasource operation
           [java] === 2012-10-12 21:13:54,847 [l0-0] INFO  SQLDataSource - [builtinApplication.animals_fetch] Performing fetch operation with
           [java] 	criteria: {}	values: {}
           [java] === 2012-10-12 21:13:54,903 [l0-0] INFO  SQLWhereClause - [builtinApplication.animals_fetch] empty condition
           [java] === 2012-10-12 21:13:54,904 [l0-0] INFO  SQLDataSource - [builtinApplication.animals_fetch] derived query: SELECT $defaultSelectClause FROM $defaultTableClause WHERE $defaultWhereClause
           [java] === 2012-10-12 21:13:55,205 [l0-0] INFO  SQLDataSource - [builtinApplication.animals_fetch] Executing SQL query on 'HSQLDB': SELECT animals.commonName, animals.diet, animals.information, animals.lifeSpan, animals.picture, animals.scientificName, animals.status FROM animals WHERE ('1'='1')
           [java] === 2012-10-12 21:13:55,290 [l0-2] INFO  RequestContext - URL: '/builtinds/sc/system/reference/skin/images/opener_opened.png', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:55,290 [l0-3] INFO  RequestContext - URL: '/builtinds/sc/system/reference/skin/images/server_network_closed.png', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:55,291 [l0-4] INFO  RequestContext - URL: '/builtinds/sc/system/reference/skin/images/server_client_exchange.png', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:55,312 [l0-3] INFO  Download - File /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/reference/skin/images/server_network_closed.png not found, sending 404
           [java] === 2012-10-12 21:13:55,312 [l0-2] INFO  Download - File /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/reference/skin/images/opener_opened.png not found, sending 404
           [java] === 2012-10-12 21:13:55,300 [l0-4] INFO  Download - File /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/reference/skin/images/server_client_exchange.png not found, sending 404
           [java] === 2012-10-12 21:13:55,396 [l0-0] INFO  PoolManager - [builtinApplication.animals_fetch] SmartClient pooling disabled for 'HSQLDB' objects
           [java] === 2012-10-12 21:13:55,397 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.animals_fetch] Initializing SQL config for 'HSQLDB' from system config - using DriverManager:  org.hsqldb.jdbcDriver
           [java] === 2012-10-12 21:13:55,414 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.animals_fetch] org.hsqldb.jdbcDriver lookup successful
           [java] === 2012-10-12 21:13:55,414 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.animals_fetch] DriverManager fetching connection for HSQLDB via jdbc url jdbc:hsqldb:hsql://localhost/isomorphic
           [java] === 2012-10-12 21:13:55,414 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.animals_fetch] Passing JDBC URL only to getConnection
           [java] === 2012-10-12 21:13:55,438 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.animals_fetch] makeObject() created an unpooled Connection '739432531'
           [java] === 2012-10-12 21:13:55,438 [l0-0] DEBUG SQLConnectionManager - [builtinApplication.animals_fetch] Returning borrowed connection '739432531'
           [java] === 2012-10-12 21:13:55,438 [l0-0] DEBUG SQLDriver - [builtinApplication.animals_fetch] About to execute SQL query in 'HSQLDB' using connection '739432531'
           [java] === 2012-10-12 21:13:55,438 [l0-0] INFO  SQLDriver - [builtinApplication.animals_fetch] Executing SQL query on 'HSQLDB': SELECT animals.commonName, animals.diet, animals.information, animals.lifeSpan, animals.picture, animals.scientificName, animals.status FROM animals WHERE ('1'='1')
           [java] === 2012-10-12 21:13:55,518 [l0-0] INFO  DSResponse - [builtinApplication.animals_fetch] DSResponse: List with 29 items
           [java] === 2012-10-12 21:13:55,523 [l0-0] DEBUG SQLConnectionManager - About to close jdbcConnection with hashcode "739432531"
           [java] === 2012-10-12 21:13:55,549 [l0-0] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
           [java] === 2012-10-12 21:13:55,549 [l0-0] DEBUG DeclarativeSecurity - DataSource supplyItem is not in the pre-checked list, processing...
           [java] === 2012-10-12 21:13:55,549 [l0-0] DEBUG AppBase - [builtinApplication.supplyItem_fetch] No userTypes defined, allowing anyone access to all operations for this application
           [java] === 2012-10-12 21:13:55,549 [l0-0] DEBUG AppBase - [builtinApplication.supplyItem_fetch] No public zero-argument method named '_supplyItem_fetch' found, performing generic datasource operation
           [java] === 2012-10-12 21:13:55,550 [l0-0] INFO  SQLDataSource - [builtinApplication.supplyItem_fetch] Performing fetch operation with
           [java] 	criteria: {}	values: {}
           [java] === 2012-10-12 21:13:55,550 [l0-0] INFO  SQLWhereClause - [builtinApplication.supplyItem_fetch] empty condition
           [java] === 2012-10-12 21:13:55,550 [l0-0] INFO  SQLDataSource - [builtinApplication.supplyItem_fetch] derived query: SELECT $defaultSelectClause FROM $defaultTableClause WHERE $defaultWhereClause
           [java] === 2012-10-12 21:13:55,551 [l0-0] INFO  SQLDataSource - [builtinApplication.supplyItem_fetch] Executing SQL query on 'HSQLDB': SELECT supplyItem.SKU, supplyItem.category, supplyItem.description, supplyItem.inStock, supplyItem.itemID, supplyItem.itemName, supplyItem.nextShipment, supplyItem.unitCost, supplyItem.units FROM supplyItem WHERE ('1'='1')
           [java] === 2012-10-12 21:13:55,554 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.supplyItem_fetch] DriverManager fetching connection for HSQLDB via jdbc url jdbc:hsqldb:hsql://localhost/isomorphic
           [java] === 2012-10-12 21:13:55,554 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.supplyItem_fetch] Passing JDBC URL only to getConnection
           [java] === 2012-10-12 21:13:55,557 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.supplyItem_fetch] makeObject() created an unpooled Connection '1522575614'
           [java] === 2012-10-12 21:13:55,560 [l0-0] DEBUG SQLConnectionManager - [builtinApplication.supplyItem_fetch] Returning borrowed connection '1522575614'
           [java] === 2012-10-12 21:13:55,560 [l0-0] DEBUG SQLDriver - [builtinApplication.supplyItem_fetch] About to execute SQL query in 'HSQLDB' using connection '1522575614'
           [java] === 2012-10-12 21:13:55,560 [l0-0] INFO  SQLDriver - [builtinApplication.supplyItem_fetch] Executing SQL query on 'HSQLDB': SELECT supplyItem.SKU, supplyItem.category, supplyItem.description, supplyItem.inStock, supplyItem.itemID, supplyItem.itemName, supplyItem.nextShipment, supplyItem.unitCost, supplyItem.units FROM supplyItem WHERE ('1'='1')
           [java] === 2012-10-12 21:13:56,608 [l0-0] INFO  DSResponse - [builtinApplication.supplyItem_fetch] DSResponse: List with 3959 items
           [java] === 2012-10-12 21:13:56,610 [l0-0] DEBUG SQLConnectionManager - About to close jdbcConnection with hashcode "1522575614"
           [java] === 2012-10-12 21:13:56,611 [l0-0] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
           [java] === 2012-10-12 21:13:56,611 [l0-0] DEBUG DeclarativeSecurity - DataSource employees is not in the pre-checked list, processing...
           [java] === 2012-10-12 21:13:56,612 [l0-0] DEBUG AppBase - [builtinApplication.employees_fetch] No userTypes defined, allowing anyone access to all operations for this application
           [java] === 2012-10-12 21:13:56,612 [l0-0] DEBUG AppBase - [builtinApplication.employees_fetch] No public zero-argument method named '_employees_fetch' found, performing generic datasource operation
           [java] === 2012-10-12 21:13:56,612 [l0-0] INFO  SQLDataSource - [builtinApplication.employees_fetch] Performing fetch operation with
           [java] 	criteria: {}	values: {}
           [java] === 2012-10-12 21:13:56,612 [l0-0] INFO  SQLWhereClause - [builtinApplication.employees_fetch] empty condition
           [java] === 2012-10-12 21:13:56,613 [l0-0] INFO  SQLDataSource - [builtinApplication.employees_fetch] derived query: SELECT $defaultSelectClause FROM $defaultTableClause WHERE $defaultWhereClause
           [java] === 2012-10-12 21:13:56,613 [l0-0] INFO  SQLDataSource - [builtinApplication.employees_fetch] Executing SQL query on 'HSQLDB': SELECT employeeTable.Email, employeeTable.EmployeeId, employeeTable.EmployeeStatus, employeeTable.EmployeeType, employeeTable.Gender, employeeTable.Job, employeeTable.MaritalStatus, employeeTable.Name, employeeTable.OrgUnit, employeeTable.ReportsTo, employeeTable.Salary, employeeTable.userOrder FROM employeeTable WHERE ('1'='1')
           [java] === 2012-10-12 21:13:56,615 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.employees_fetch] DriverManager fetching connection for HSQLDB via jdbc url jdbc:hsqldb:hsql://localhost/isomorphic
           [java] === 2012-10-12 21:13:56,615 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.employees_fetch] Passing JDBC URL only to getConnection
           [java] === 2012-10-12 21:13:56,624 [l0-0] DEBUG PoolableSQLConnectionFactory - [builtinApplication.employees_fetch] makeObject() created an unpooled Connection '439531848'
           [java] === 2012-10-12 21:13:56,624 [l0-0] DEBUG SQLConnectionManager - [builtinApplication.employees_fetch] Returning borrowed connection '439531848'
           [java] === 2012-10-12 21:13:56,624 [l0-0] DEBUG SQLDriver - [builtinApplication.employees_fetch] About to execute SQL query in 'HSQLDB' using connection '439531848'
           [java] === 2012-10-12 21:13:56,624 [l0-0] INFO  SQLDriver - [builtinApplication.employees_fetch] Executing SQL query on 'HSQLDB': SELECT employeeTable.Email, employeeTable.EmployeeId, employeeTable.EmployeeStatus, employeeTable.EmployeeType, employeeTable.Gender, employeeTable.Job, employeeTable.MaritalStatus, employeeTable.Name, employeeTable.OrgUnit, employeeTable.ReportsTo, employeeTable.Salary, employeeTable.userOrder FROM employeeTable WHERE ('1'='1')
           [java] === 2012-10-12 21:13:56,649 [l0-0] INFO  DSResponse - [builtinApplication.employees_fetch] DSResponse: List with 115 items
           [java] === 2012-10-12 21:13:56,649 [l0-0] DEBUG SQLConnectionManager - About to close jdbcConnection with hashcode "439531848"
           [java] === 2012-10-12 21:13:56,657 [l0-0] DEBUG RPCManager - Content type for RPC transaction: text/plain; charset=UTF-8
           [java] === 2012-10-12 21:13:56,659 [l0-0] DEBUG RPCManager - non-DMI response, dropExtraFields: false
           [java] === 2012-10-12 21:13:56,667 [l0-0] DEBUG RPCManager - non-DMI response, dropExtraFields: false
           [java] === 2012-10-12 21:13:56,668 [l0-0] DEBUG RPCManager - non-DMI response, dropExtraFields: false
           [java] === 2012-10-12 21:13:58,404 [l0-0] INFO  Compression - /builtinds/sc/IDACall: 758941 -> 168757 bytes
           [java] fetch animalsDS - ready
           [java] fetch supplyItem - ready
           [java] fetch animals - ready
           [java] === 2012-10-12 21:13:58,694 [l0-2] INFO  RequestContext - URL: '/builtinds/sc/system/reference/skin/images/server_network_closed.png', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:58,695 [l0-2] INFO  Download - File /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/reference/skin/images/server_network_closed.png not found, sending 404
           [java] === 2012-10-12 21:13:58,695 [l0-4] INFO  RequestContext - URL: '/builtinds/sc/system/reference/skin/images/server_client_exchange.png', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:58,695 [l0-4] INFO  Download - File /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/reference/skin/images/server_client_exchange.png not found, sending 404
           [java] === 2012-10-12 21:13:58,727 [l0-0] INFO  RequestContext - URL: '/builtinds/sc/system/reference/skin/images/opener_opened.png', User-Agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:9.0) Gecko/20100101 Firefox/9.0': Moz (Gecko) with Accept-Encoding header
           [java] === 2012-10-12 21:13:58,727 [l0-0] INFO  Download - File /Volumes/Macintosh HD/Users/timo/Documents/GWT/20121010-smartgwt-3.1d/smartgwtpower-3.1d/samples/built-in-ds/war/builtinds/sc/system/reference/skin/images/opener_opened.png not found, sending 404

      Comment


        #4
        Thanks for the sample code
        This is indeed a message that can be ignored - it is showing in cases when it shouldn't. We're fixing this internally

        Regards
        Isomorphic Software

        Comment

        Working...
        X