Announcement

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

    SmartGwt 4.1 and setAllowFilterExpressions

    Hello,

    I experience some difficulties filtering on the grid using regular expression (using setAllowFilterExpressions). I was perfectly working with smartgwt 3.x.

    I managed to reproduce the bug using sample code provided by isomorphic:
    - I downloaded the latest version of smartgwt (2014-03-16).
    - I resused the sample "ds-jpa" found in the folder "samples".
    - I only added the following line: countryGrid.setAllowFilterExpressions(true);

    Find below the full version of the code and the full stack trace. In attachment, find also a screenshot of the bug, when I filtered the grid with the character u.

    Can you help me out activating the expression filtering?

    Thank you for your help

    Regards,

    Samuel

    Version: Isomorphic SmartClient/SmartGWT Framework (v9.1p_2014-03-16/PowerEdition Deployment 2014-03-16)

    Browser: Internet Explorer 10

    Here is the code
    Code:
    package com.smartgwt.sample.client;
    
    import com.google.gwt.core.client.EntryPoint;
    import com.smartgwt.client.core.KeyIdentifier;
    import com.smartgwt.client.data.DataSource;
    import com.smartgwt.client.types.ListGridEditEvent;
    import com.smartgwt.client.util.PageKeyHandler;
    import com.smartgwt.client.util.Page;
    import com.smartgwt.client.util.SC;
    import com.smartgwt.client.widgets.IButton;
    import com.smartgwt.client.widgets.events.ClickEvent;
    import com.smartgwt.client.widgets.events.ClickHandler;
    import com.smartgwt.client.widgets.grid.ListGrid;
    import com.smartgwt.client.widgets.grid.ListGridField;
    import com.smartgwt.client.widgets.grid.ListGridRecord;
    import com.smartgwt.client.widgets.grid.events.EditorEnterEvent;
    import com.smartgwt.client.widgets.grid.events.EditorEnterHandler;
    import com.smartgwt.client.widgets.grid.events.SelectionChangedHandler;
    import com.smartgwt.client.widgets.grid.events.SelectionEvent;
    import com.smartgwt.client.widgets.layout.VStack;
    
    public class JPADS implements EntryPoint {
        /** 
         * Creates a new instance of JPADS
         */
        public JPADS() {
        }
    
        /** 
         * The entry point method, called automatically by loading a module
         * that declares an implementing class as an entry-point
         */
        public void onModuleLoad() {
    		KeyIdentifier debugKey = new KeyIdentifier();
    		debugKey.setCtrlKey(true);
    		debugKey.setKeyName("D");
    
    		Page.registerKey(debugKey, new PageKeyHandler() {
    			public void execute(String keyName) {
    				SC.showConsole();
    			}
    		});
    
            VStack vStack = new VStack();
            vStack.setLeft(175);
            vStack.setTop(75);
            vStack.setWidth("70%");
            vStack.setMembersMargin(20);
    
            final DataSource countryDS = DataSource.get("country_DataSource");
    
            final ListGrid countryGrid = new ListGrid();
            countryGrid.setWidth(700);
            countryGrid.setHeight(224);
            countryGrid.setAlternateRecordStyles(true);
            countryGrid.setDataSource(countryDS);
            countryGrid.setAutoFetchData(true);
            countryGrid.setShowFilterEditor(true);
            countryGrid.setCanEdit(true);
            countryGrid.setEditEvent(ListGridEditEvent.CLICK);
            countryGrid.setCanRemoveRecords(true);
    
            countryGrid.setAllowFilterExpressions(true);
    
            
            ListGridField countryCode = new ListGridField("countryCode", "Code", 50);
            ListGridField countryName = new ListGridField("countryName", "Country");
    
            countryGrid.setFields(countryCode, countryName);
    
            IButton newCountryButton = new IButton("New country");
            newCountryButton.addClickHandler(new ClickHandler()
            {
                public void onClick (ClickEvent event)
                {
                    countryGrid.startEditingNew();
                }
            });
    
            DataSource cityDS = DataSource.get("city_DataSource");
            final ListGrid cityGrid = new ListGrid();
            cityGrid.setWidth(700);
            cityGrid.setHeight(224);
            cityGrid.setAlternateRecordStyles(true);
            cityGrid.setDataSource(cityDS);
            cityGrid.setAutoFetchData(false);
            cityGrid.setShowFilterEditor(true);
            cityGrid.setCanEdit(true);
            cityGrid.setEditEvent(ListGridEditEvent.CLICK);
            cityGrid.setCanRemoveRecords(true);
    
            ListGridField cityName = new ListGridField("cityName", "City");
    
            cityGrid.setFields(cityName);
    
            IButton newCityButton = new IButton("New city");
            newCityButton.addClickHandler(new ClickHandler()
            {
                public void onClick (ClickEvent event)
                {
                    ListGridRecord record = countryGrid.getSelectedRecord();
                    if (record != null) {
                        cityGrid.startEditingNew();
                    }
                    else {
                        SC.warn("Select country first.");
                    }
                }
            });
    
            countryGrid.addSelectionChangedHandler(new SelectionChangedHandler()
            {
                public void onSelectionChanged (SelectionEvent event)
                {
                    if (event.getState()) {
                        ListGridRecord record = countryGrid.getSelectedRecord();
                        if (record != null) {
                            cityGrid.fetchRelatedData(record, countryDS);
                        }
                    }
                }
            });
    
            cityGrid.addEditorEnterHandler(new EditorEnterHandler()
            {
                public void onEditorEnter (EditorEnterEvent event)
                {
                    cityGrid.setEditValue(event.getRowNum(), "countryId",
                                          countryGrid.getSelectedRecord().getAttribute("countryId"));
                }
            });
    
            vStack.addMember(newCountryButton);
            vStack.addMember(countryGrid);
            vStack.addMember(newCityButton);
            vStack.addMember(cityGrid);
    
            vStack.draw();
    
            countryGrid.getResultSet().setUseClientFiltering(Boolean.FALSE);
            countryGrid.getResultSet().setUseClientSorting(Boolean.FALSE);
        }
    }
    Here is the full Stack trace.
    Code:
    [Server@13336e4]: [Thread[main,5,main]]: checkRunning(false) entered
    [Server@13336e4]: [Thread[main,5,main]]: checkRunning(false) exited
    [Server@13336e4]: Startup sequence initiated from main() method
    [Server@13336e4]: Could not load properties from file
    [Server@13336e4]: Using cli/default properties only
    [Server@13336e4]: Initiating startup sequence...
    [Server@13336e4]: Server socket opened successfully in 0 ms.
    log4j:WARN No appenders could be found for logger (hsqldb.db.HSQLDB44CB5696AB.ENGINE).
    log4j:WARN Please initialize the log4j system properly.
    [Server@13336e4]: Database [index=0, id=0, db=file:C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war\WEB-INF\db\hsqldb\isomorphic, alias=isomorphic] opened sucessfully in 1890 ms.
    [Server@13336e4]: Startup sequence completed in 1890 ms.
    [Server@13336e4]: 2014-03-18 15:48:07.259 HSQLDB server 2.2.9 is online on port 9001
    [Server@13336e4]: To close normally, connect and execute SHUTDOWN SQL
    [Server@13336e4]: From command line, use [Ctrl]+[C] to abort abruptly
    ISC: Configuring log4j from: file:/C:/Users/sboclinville/Documents/dvp/workspaces/eclipseAVRSWorkspace-NEW/ds-jpaNEW/war/WEB-INF/classes/log4j.isc.config.xml
    === 2014-03-18 15:48:07,759 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework - Initializing
    === 2014-03-18 15:48:07,775 [main] INFO  ConfigLoader - Attempting to load framework.properties from CLASSPATH
    === 2014-03-18 15:48:07,899 [main] INFO  ConfigLoader - Successfully loaded framework.properties from CLASSPATH at location: jar:file:/C:/Users/sboclinville/Documents/dvp/workspaces/eclipseAVRSWorkspace-NEW/ds-jpaNEW/war/WEB-INF/lib/isomorphic_core_rpc.jar!/framework.properties
    === 2014-03-18 15:48:07,899 [main] INFO  ConfigLoader - Attempting to load project.properties from CLASSPATH
    === 2014-03-18 15:48:07,899 [main] INFO  ConfigLoader - Unable to locate project.properties in CLASSPATH
    === 2014-03-18 15:48:07,899 [main] INFO  ConfigLoader - Successfully loaded isc_interfaces.properties from CLASSPATH at location: jar:file:/C:/Users/sboclinville/Documents/dvp/workspaces/eclipseAVRSWorkspace-NEW/ds-jpaNEW/war/WEB-INF/lib/isomorphic_core_rpc.jar!/isc_interfaces.properties
    === 2014-03-18 15:48:07,899 [main] INFO  ConfigLoader - Attempting to load server.properties from CLASSPATH
    === 2014-03-18 15:48:07,899 [main] INFO  ConfigLoader - Successfully loaded server.properties from CLASSPATH at location: file:/C:/Users/sboclinville/Documents/dvp/workspaces/eclipseAVRSWorkspace-NEW/ds-jpaNEW/war/WEB-INF/classes/server.properties
    === 2014-03-18 15:48:07,899 [main] INFO  Logger - Logging system started.
    === 2014-03-18 15:48:07,915 [main] INFO  ISCInit - Auto-detected webRoot - using: C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war
    === 2014-03-18 15:48:07,915 [main] INFO  ISCInit - Isomorphic SmartClient/SmartGWT Framework (v9.1p_2014-03-16/PowerEdition Deployment 2014-03-16) - Initialization Complete
    === 2014-03-18 15:48:33,345 [l0-0] INFO  Compression - /JPADS_js/JPADS_js.nocache.js: 7353 -> 2852 bytes
    === 2014-03-18 15:48:33,345 [l0-0] DEBUG ServletTools - setting cookie 'isc_cState' to: 'ready'
    === 2014-03-18 15:48:33,345 [l0-2] INFO  RequestContext - URL: '/JPADS_js/sc/DataSourceLoader', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:48:33,549 [l0-0] INFO  Compression - /JPADS_js/sc/modules/ISC_Core.js: 914557 -> 239843 bytes
    === 2014-03-18 15:48:33,798 [l0-2] DEBUG XML - Parsed XML from C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war\JPADS_js\sc\system\schema\builtinTypes.xml: 15ms
    === 2014-03-18 15:48:33,923 [l0-2] INFO  PoolManager - SmartClient pooling started for 'simpleTypes' objects
    === 2014-03-18 15:48:34,173 [l0-2] DEBUG XML - Parsed XML from C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war\ds\country_DataSource.ds.xml: 0ms
    === 2014-03-18 15:48:34,173 [l0-2] DEBUG XML - Parsed XML from C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war\JPADS_js\sc\system\schema\DataSource.ds.xml: 0ms
    === 2014-03-18 15:48:34,235 [l0-2] DEBUG XML - Parsed XML from C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war\JPADS_js\sc\system\schema\DataSourceField.ds.xml: 0ms
    === 2014-03-18 15:48:34,297 [l0-2] DEBUG EMF - Initializing default EMF provider: com.isomorphic.jpa.EMFProviderLMT
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Instantiating class com.smartgwt.sample.server.Country
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Generating data source 'Country_JPA' for class com.smartgwt.sample.server.Country
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Generating field 'countryCode' of type java.lang.String
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Singular field configuration generated: {extScale=0, extIsUnique=false, name=countryCode, length=255, extPrecision=0, canEdit=true, required=true, type=text}
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Generating field 'countryName' of type java.lang.String
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Singular field configuration generated: {extScale=0, extIsUnique=false, name=countryName, length=255, extPrecision=0, canEdit=true, required=true, type=text}
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Generating field 'countryId' of type java.lang.Long
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG JPA2DSGenerator - Singular field configuration generated: {extScale=0, hidden=true, primaryKey=true, extIsUnique=false, name=countryId, length=255, extPrecision=0, canEdit=false, required=false, type=sequence}
    === 2014-03-18 15:48:36,435 [l0-2] DEBUG DataSourceLoader - For DataSource 'country_DataSource', got instanceId 6
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG XML - Parsed XML from C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war\ds\city_DataSource.ds.xml: 0ms
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Instantiating class com.smartgwt.sample.server.City
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Generating data source 'City_JPA' for class com.smartgwt.sample.server.City
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Generating field 'cityId' of type java.lang.Long
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Singular field configuration generated: {extScale=0, hidden=true, primaryKey=true, extIsUnique=false, name=cityId, length=255, extPrecision=0, canEdit=false, required=false, type=sequence}
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Generating field 'countryId' of type java.lang.Long
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Singular field configuration generated: {extScale=0, extIsUnique=false, name=countryId, length=255, extPrecision=0, canEdit=true, required=true, type=integer}
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Generating field 'cityName' of type java.lang.String
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Singular field configuration generated: {extScale=0, extIsUnique=false, name=cityName, length=255, extPrecision=0, canEdit=true, required=true, type=text}
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Generating field 'country' of type com.smartgwt.sample.server.Country
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG JPA2DSGenerator - Property with reference to another entity skipped: {name=country, type=any}
    === 2014-03-18 15:48:36,436 [l0-2] DEBUG DataSourceLoader - For DataSource 'city_DataSource', got instanceId 7
    === 2014-03-18 15:48:45,515 [l0-2] INFO  RequestContext - URL: '/JPADS_js/sc/IDACall', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Host:127.0.0.1:8888
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: User-Agent:Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Accept-Language:en-US,en;q=0.5
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Accept-Encoding:gzip, deflate
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: DNT:1
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Connection:keep-alive
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Referer:http://127.0.0.1:8888/JPADS.html?gwt.codesvr=127.0.0.1:9997
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Cookie:isc_cState=ready; JSESSIONID=x2mce8hszas9
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Content-Type:application/x-www-form-urlencoded; charset=UTF-8
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Content-Length:1032
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Pragma:no-cache
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - Header Name:Value pair: Cache-Control:no-cache
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - session exists: x2mce8hszas9
    === 2014-03-18 15:48:45,515 [l0-2] DEBUG IDACall - remote user: null
    === 2014-03-18 15:48:45,547 [l0-0] INFO  RequestContext - URL: '/favicon.ico', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:48:45,563 [l0-2] DEBUG XML - Parsed XML from (in memory stream): 0ms
    === 2014-03-18 15:48:45,563 [l0-2] DEBUG XML - Parsed XML from C:\Users\sboclinville\Documents\dvp\workspaces\eclipseAVRSWorkspace-NEW\ds-jpaNEW\war\JPADS_js\sc\system\schema\List.ds.xml: 0ms
    === 2014-03-18 15:48:45,563 [l0-2] DEBUG RPCManager - Processing 1 requests.
    === 2014-03-18 15:48:45,578 [l0-2] DEBUG RPCManager - Request #1 (DSRequest) payload: {
        criteria:{
        },
        operationConfig:{
            dataSource:"country_DataSource",
            operationType:"fetch",
            textMatchStyle:"substring"
        },
        startRow:0,
        endRow:75,
        componentId:"isc_ListGrid_0",
        appID:"builtinApplication",
        operation:"country_DataSource_fetch",
        oldValues:{
        }
    }
    === 2014-03-18 15:48:45,578 [l0-2] INFO  IDACall - Performing 1 operation(s)
    === 2014-03-18 15:48:45,578 [l0-2] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
    === 2014-03-18 15:48:45,578 [l0-2] DEBUG DeclarativeSecurity - DataSource country_DataSource is not in the pre-checked list, processing...
    === 2014-03-18 15:48:45,594 [l0-2] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No userTypes defined, allowing anyone access to all operations for this application
    === 2014-03-18 15:48:45,594 [l0-2] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No public zero-argument method named '_country_DataSource_fetch' found, performing generic datasource operation
    === 2014-03-18 15:48:45,594 [l0-2] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Creating EntityManager and starting transaction.
    === 2014-03-18 15:48:45,625 [l0-2] DEBUG DSRequest - [builtinApplication.country_DataSource_fetch] Clobbering existing FreeResourcesHandler of type 'com.isomorphic.jpa.JPA2DataSource' with a 'com.isomorphic.jpa.JPA2DataSource'
    === 2014-03-18 15:48:45,625 [l0-2] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Executing fetch.
    === 2014-03-18 15:48:45,625 [l0-2] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Query string: select _Country from Country _Country 
    Hibernate: 
        select
            count(country0_.countryId) as col_0_0_ 
        from
            Country country0_
    Hibernate: 
        select
            country0_.countryId as countryId1_,
            country0_.countryCode as countryC2_1_,
            country0_.countryName as countryN3_1_ 
        from
            Country country0_ limit ?
    === 2014-03-18 15:48:46,514 [l0-2] INFO  DSResponse - [builtinApplication.country_DataSource_fetch] DSResponse: List with 4 items
    === 2014-03-18 15:48:46,530 [l0-2] DEBUG RPCManager - Content type for RPC transaction: text/plain; charset=UTF-8
    === 2014-03-18 15:48:46,530 [l0-2] DEBUG JPADataSource - Committing current transaction.
    === 2014-03-18 15:48:47,124 [l0-2] DEBUG RPCManager - non-DMI response, dropExtraFields: false
    === 2014-03-18 15:48:47,124 [l0-2] DEBUG JPADataSource - Releasing entity manager.
    === 2014-03-18 15:48:47,124 [l0-2] INFO  Compression - /JPADS_js/sc/IDACall: 417 -> 244 bytes
    === 2014-03-18 15:50:27,466 [l0-3] INFO  RequestContext - URL: '/JPADS_js/sc/DataSourceLoader', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:50:27,466 [l0-3] DEBUG DataSourceLoader - For DataSource 'country_DataSource', got instanceId 6
    === 2014-03-18 15:50:27,481 [l0-3] DEBUG DataSourceLoader - For DataSource 'city_DataSource', got instanceId 7
    === 2014-03-18 15:50:27,560 [l0-3] INFO  Compression - /JPADS_js/sc/modules/ISC_Core.js: 914557 -> 239843 bytes
    === 2014-03-18 15:50:35,329 [l0-3] INFO  RequestContext - URL: '/JPADS_js/sc/IDACall', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Host:127.0.0.1:8888
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: User-Agent:Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Language:en-US,en;q=0.5
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Encoding:gzip, deflate
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: DNT:1
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Connection:keep-alive
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Referer:http://127.0.0.1:8888/JPADS.html?gwt.codesvr=127.0.0.1:9997
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Cookie:isc_cState=ready; JSESSIONID=x2mce8hszas9
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Type:application/x-www-form-urlencoded; charset=UTF-8
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Length:1032
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Pragma:no-cache
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - Header Name:Value pair: Cache-Control:no-cache
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - session exists: x2mce8hszas9
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG IDACall - remote user: null
    === 2014-03-18 15:50:35,329 [l0-3] DEBUG XML - Parsed XML from (in memory stream): 0ms
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG RPCManager - Processing 1 requests.
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG RPCManager - Request #1 (DSRequest) payload: {
        criteria:{
        },
        operationConfig:{
            dataSource:"country_DataSource",
            operationType:"fetch",
            textMatchStyle:"substring"
        },
        startRow:0,
        endRow:75,
        componentId:"isc_ListGrid_0",
        appID:"builtinApplication",
        operation:"country_DataSource_fetch",
        oldValues:{
        }
    }
    === 2014-03-18 15:50:35,345 [l0-3] INFO  IDACall - Performing 1 operation(s)
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG DeclarativeSecurity - DataSource country_DataSource is not in the pre-checked list, processing...
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No userTypes defined, allowing anyone access to all operations for this application
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No public zero-argument method named '_country_DataSource_fetch' found, performing generic datasource operation
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Creating EntityManager and starting transaction.
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG DSRequest - [builtinApplication.country_DataSource_fetch] Clobbering existing FreeResourcesHandler of type 'com.isomorphic.jpa.JPA2DataSource' with a 'com.isomorphic.jpa.JPA2DataSource'
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Executing fetch.
    === 2014-03-18 15:50:35,345 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Query string: select _Country from Country _Country 
    Hibernate: 
        select
            count(country0_.countryId) as col_0_0_ 
        from
            Country country0_
    Hibernate: 
        select
            country0_.countryId as countryId1_,
            country0_.countryCode as countryC2_1_,
            country0_.countryName as countryN3_1_ 
        from
            Country country0_ limit ?
    === 2014-03-18 15:50:35,346 [l0-3] INFO  DSResponse - [builtinApplication.country_DataSource_fetch] DSResponse: List with 4 items
    === 2014-03-18 15:50:35,346 [l0-3] DEBUG RPCManager - Content type for RPC transaction: text/plain; charset=UTF-8
    === 2014-03-18 15:50:35,346 [l0-3] DEBUG JPADataSource - Committing current transaction.
    === 2014-03-18 15:50:35,346 [l0-3] DEBUG RPCManager - non-DMI response, dropExtraFields: false
    === 2014-03-18 15:50:35,346 [l0-3] DEBUG JPADataSource - Releasing entity manager.
    === 2014-03-18 15:50:35,346 [l0-3] INFO  Compression - /JPADS_js/sc/IDACall: 417 -> 244 bytes
    === 2014-03-18 15:51:05,064 [l0-3] INFO  RequestContext - URL: '/JPADS_js/sc/skins/Enterprise/images/ListGrid/sort_ascending.png', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:51:05,318 [l0-3] INFO  Download - done streaming: C:/Users/sboclinville/Documents/dvp/workspaces/eclipseAVRSWorkspace-NEW/ds-jpaNEW/war/JPADS_js/sc/skins/Enterprise/images/ListGrid/sort_ascending.png
    === 2014-03-18 15:51:05,409 [l0-3] INFO  RequestContext - URL: '/JPADS_js/sc/IDACall', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Host:127.0.0.1:8888
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: User-Agent:Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Language:en-US,en;q=0.5
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Encoding:gzip, deflate
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: DNT:1
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Connection:keep-alive
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Referer:http://127.0.0.1:8888/JPADS.html?gwt.codesvr=127.0.0.1:9997
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Cookie:isc_cState=ready; JSESSIONID=x2mce8hszas9
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Type:application/x-www-form-urlencoded; charset=UTF-8
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Length:1125
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Pragma:no-cache
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - Header Name:Value pair: Cache-Control:no-cache
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - session exists: x2mce8hszas9
    === 2014-03-18 15:51:05,409 [l0-3] DEBUG IDACall - remote user: null
    === 2014-03-18 15:51:05,424 [l0-3] DEBUG XML - Parsed XML from (in memory stream): 15ms
    === 2014-03-18 15:51:05,424 [l0-3] DEBUG RPCManager - Processing 1 requests.
    === 2014-03-18 15:51:05,424 [l0-3] DEBUG RPCManager - Request #1 (DSRequest) payload: {
        criteria:{
        },
        operationConfig:{
            dataSource:"country_DataSource",
            operationType:"fetch",
            textMatchStyle:"substring"
        },
        startRow:0,
        endRow:75,
        sortBy:[
            "countryName"
        ],
        componentId:"isc_ListGrid_0",
        appID:"builtinApplication",
        operation:"country_DataSource_fetch",
        oldValues:{
        }
    }
    === 2014-03-18 15:51:05,424 [l0-3] INFO  IDACall - Performing 1 operation(s)
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG DeclarativeSecurity - DataSource country_DataSource is not in the pre-checked list, processing...
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No userTypes defined, allowing anyone access to all operations for this application
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No public zero-argument method named '_country_DataSource_fetch' found, performing generic datasource operation
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Creating EntityManager and starting transaction.
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG DSRequest - [builtinApplication.country_DataSource_fetch] Clobbering existing FreeResourcesHandler of type 'com.isomorphic.jpa.JPA2DataSource' with a 'com.isomorphic.jpa.JPA2DataSource'
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Executing fetch.
    === 2014-03-18 15:51:05,487 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Query string: select _Country from Country _Country  order by _Country.countryName
    Hibernate: 
        select
            count(country0_.countryId) as col_0_0_ 
        from
            Country country0_
    Hibernate: 
        select
            country0_.countryId as countryId1_,
            country0_.countryCode as countryC2_1_,
            country0_.countryName as countryN3_1_ 
        from
            Country country0_ 
        order by
            country0_.countryName limit ?
    === 2014-03-18 15:51:05,502 [l0-3] INFO  DSResponse - [builtinApplication.country_DataSource_fetch] DSResponse: List with 4 items
    === 2014-03-18 15:51:05,502 [l0-3] DEBUG RPCManager - Content type for RPC transaction: text/plain; charset=UTF-8
    === 2014-03-18 15:51:05,502 [l0-3] DEBUG JPADataSource - Committing current transaction.
    === 2014-03-18 15:51:05,502 [l0-3] DEBUG RPCManager - non-DMI response, dropExtraFields: false
    === 2014-03-18 15:51:05,502 [l0-3] DEBUG JPADataSource - Releasing entity manager.
    === 2014-03-18 15:51:05,502 [l0-3] INFO  Compression - /JPADS_js/sc/IDACall: 417 -> 245 bytes
    === 2014-03-18 15:51:09,084 [l0-3] INFO  RequestContext - URL: '/JPADS_js/sc/IDACall', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Host:127.0.0.1:8888
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: User-Agent:Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Language:en-US,en;q=0.5
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Encoding:gzip, deflate
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: DNT:1
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Connection:keep-alive
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Referer:http://127.0.0.1:8888/JPADS.html?gwt.codesvr=127.0.0.1:9997
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Cookie:isc_cState=ready; JSESSIONID=x2mce8hszas9
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Type:application/x-www-form-urlencoded; charset=UTF-8
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Length:1887
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Pragma:no-cache
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - Header Name:Value pair: Cache-Control:no-cache
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - session exists: x2mce8hszas9
    === 2014-03-18 15:51:09,084 [l0-3] DEBUG IDACall - remote user: null
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG XML - Parsed XML from (in memory stream): 1ms
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG RPCManager - Processing 1 requests.
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG RPCManager - Request #1 (DSRequest) payload: {
        criteria:{
            operator:"and",
            _constructor:"AdvancedCriteria",
            criteria:[
                {
                    fieldName:"countryCode",
                    operator:"iContainsPattern",
                    value:"l",
                    _constructor:"AdvancedCriteria"
                }
            ]
        },
        operationConfig:{
            dataSource:"country_DataSource",
            operationType:"fetch",
            textMatchStyle:"substring"
        },
        startRow:0,
        endRow:75,
        sortBy:[
            "countryName"
        ],
        componentId:"isc_ListGrid_0",
        appID:"builtinApplication",
        operation:"country_DataSource_fetch",
        oldValues:{
            operator:"and",
            _constructor:"AdvancedCriteria",
            criteria:[
                {
                    fieldName:"countryCode",
                    operator:"iContainsPattern",
                    value:"l",
                    _constructor:"AdvancedCriteria"
                }
            ]
        }
    }
    === 2014-03-18 15:51:09,085 [l0-3] INFO  IDACall - Performing 1 operation(s)
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG DeclarativeSecurity - DataSource country_DataSource is not in the pre-checked list, processing...
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No userTypes defined, allowing anyone access to all operations for this application
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No public zero-argument method named '_country_DataSource_fetch' found, performing generic datasource operation
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Creating EntityManager and starting transaction.
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG DSRequest - [builtinApplication.country_DataSource_fetch] Clobbering existing FreeResourcesHandler of type 'com.isomorphic.jpa.JPA2DataSource' with a 'com.isomorphic.jpa.JPA2DataSource'
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Executing fetch.
    === 2014-03-18 15:51:09,085 [l0-3] WARN  JPADataSource - [builtinApplication.country_DataSource_fetch] 'Other' field name: 'l' specified in criteria is not defined in data source.
    Returning predicate '1=1' (always true).
    === 2014-03-18 15:51:09,085 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Query string: select _Country from Country _Country  where (1=1) order by _Country.countryName
    Hibernate: 
        select
            count(country0_.countryId) as col_0_0_ 
        from
            Country country0_ 
        where
            1=1
    Hibernate: 
        select
            country0_.countryId as countryId1_,
            country0_.countryCode as countryC2_1_,
            country0_.countryName as countryN3_1_ 
        from
            Country country0_ 
        where
            1=1 
        order by
            country0_.countryName limit ?
    === 2014-03-18 15:51:09,132 [l0-3] INFO  DSResponse - [builtinApplication.country_DataSource_fetch] DSResponse: List with 4 items
    === 2014-03-18 15:51:09,132 [l0-3] DEBUG RPCManager - Content type for RPC transaction: text/plain; charset=UTF-8
    === 2014-03-18 15:51:09,132 [l0-3] DEBUG JPADataSource - Committing current transaction.
    === 2014-03-18 15:51:09,132 [l0-3] DEBUG RPCManager - non-DMI response, dropExtraFields: false
    === 2014-03-18 15:51:09,132 [l0-3] DEBUG JPADataSource - Releasing entity manager.
    === 2014-03-18 15:51:09,132 [l0-3] INFO  Compression - /JPADS_js/sc/IDACall: 417 -> 245 bytes
    === 2014-03-18 15:51:13,062 [l0-3] INFO  RequestContext - URL: '/JPADS_js/sc/IDACall', User-Agent: 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0': Moz (Gecko) with Accept-Encoding header
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Host:127.0.0.1:8888
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: User-Agent:Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Language:en-US,en;q=0.5
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Accept-Encoding:gzip, deflate
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: DNT:1
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Connection:keep-alive
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Referer:http://127.0.0.1:8888/JPADS.html?gwt.codesvr=127.0.0.1:9997
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Cookie:isc_cState=ready; JSESSIONID=x2mce8hszas9
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Type:application/x-www-form-urlencoded; charset=UTF-8
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Content-Length:1887
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Pragma:no-cache
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - Header Name:Value pair: Cache-Control:no-cache
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - session exists: x2mce8hszas9
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG IDACall - remote user: null
    === 2014-03-18 15:51:13,062 [l0-3] DEBUG XML - Parsed XML from (in memory stream): 0ms
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG RPCManager - Processing 1 requests.
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG RPCManager - Request #1 (DSRequest) payload: {
        criteria:{
            operator:"and",
            _constructor:"AdvancedCriteria",
            criteria:[
                {
                    fieldName:"countryCode",
                    operator:"iContainsPattern",
                    value:"u",
                    _constructor:"AdvancedCriteria"
                }
            ]
        },
        operationConfig:{
            dataSource:"country_DataSource",
            operationType:"fetch",
            textMatchStyle:"substring"
        },
        startRow:0,
        endRow:75,
        sortBy:[
            "countryName"
        ],
        componentId:"isc_ListGrid_0",
        appID:"builtinApplication",
        operation:"country_DataSource_fetch",
        oldValues:{
            operator:"and",
            _constructor:"AdvancedCriteria",
            criteria:[
                {
                    fieldName:"countryCode",
                    operator:"iContainsPattern",
                    value:"u",
                    _constructor:"AdvancedCriteria"
                }
            ]
        }
    }
    === 2014-03-18 15:51:13,063 [l0-3] INFO  IDACall - Performing 1 operation(s)
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG DeclarativeSecurity - Processing security checks for DataSource null, field null
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG DeclarativeSecurity - DataSource country_DataSource is not in the pre-checked list, processing...
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No userTypes defined, allowing anyone access to all operations for this application
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG AppBase - [builtinApplication.country_DataSource_fetch] No public zero-argument method named '_country_DataSource_fetch' found, performing generic datasource operation
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Creating EntityManager and starting transaction.
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG DSRequest - [builtinApplication.country_DataSource_fetch] Clobbering existing FreeResourcesHandler of type 'com.isomorphic.jpa.JPA2DataSource' with a 'com.isomorphic.jpa.JPA2DataSource'
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Executing fetch.
    === 2014-03-18 15:51:13,063 [l0-3] WARN  JPADataSource - [builtinApplication.country_DataSource_fetch] 'Other' field name: 'u' specified in criteria is not defined in data source.
    Returning predicate '1=1' (always true).
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG JPADataSource - [builtinApplication.country_DataSource_fetch] Query string: select _Country from Country _Country  where (1=1) order by _Country.countryName
    Hibernate: 
        select
            count(country0_.countryId) as col_0_0_ 
        from
            Country country0_ 
        where
            1=1
    Hibernate: 
        select
            country0_.countryId as countryId1_,
            country0_.countryCode as countryC2_1_,
            country0_.countryName as countryN3_1_ 
        from
            Country country0_ 
        where
            1=1 
        order by
            country0_.countryName limit ?
    === 2014-03-18 15:51:13,063 [l0-3] INFO  DSResponse - [builtinApplication.country_DataSource_fetch] DSResponse: List with 4 items
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG RPCManager - Content type for RPC transaction: text/plain; charset=UTF-8
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG JPADataSource - Committing current transaction.
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG RPCManager - non-DMI response, dropExtraFields: false
    === 2014-03-18 15:51:13,063 [l0-3] DEBUG JPADataSource - Releasing entity manager.
    === 2014-03-18 15:51:13,063 [l0-3] INFO  Compression - /JPADS_js/sc/IDACall: 417 -> 245 bytes
    Attached Files

    #2
    Hello,

    I juste wanted to know if you had the time to look at the identified issue presented above?

    Thank you for your help

    Regards,
    Samuel

    Comment


      #3
      This is fixed for versions 4.1 and 5.0, you can get the fix by downloading next nightly build (2014-03-26).

      Comment


        #4
        Thank you for your help

        Comment

        Working...
        X