Results 1 to 4 of 4
  1. #1
    Member
    Join Date
    Mar 2010
    Location
    Madurai
    Posts
    12

    GroupListDescriptor Item names cannot be empty

    I am create creating an engine, to connect my LS server using the following code.

    Code:
    public native static void init(String username, String password)
    	/*-{
    		$wnd.user_name = username;		
    		var divTag = document.createElement("div");
    		divTag.id = "list";
    
    		divTag.setAttribute("class","ClassName");
    		divTag.setAttribute("source","lightstreamer");
    		divTag.setAttribute("table","TableName");
    		divTag.setAttribute("item",username+"#TableName");
    		divTag.setAttribute("field","FieldName");
    		divTag.style.display = 'none'; 
    		document.body.appendChild(divTag);
    
    		$wnd.page = new $wnd.PushPage();
    		$wnd.page.context.setDomain("chellasoftapp.com"); 
    		$wnd.page.onEngineCreation = function(engine) {
    			$wnd.lsEngine = engine;
    
    			engine.connection.setLSHost("domainName.com"); 
    			engine.connection.setLSPort("port"); 
    			
    			engine.connection.setAdapterName("AdapterName");						
    
    			engine.connection.setUserName(username);
    			engine.connection.setPassword(password);
    
    			engine.changeStatus("STREAMING");
    		}
    
    		$wnd.page.bind();		
    		$wnd.page.createEngine("AdapterName", "LS", "SHARE_SESSION", true);
    
    		var itemName = username+"#iTableName";
    		$wnd.pushtable = new $wnd.NonVisualTable(itemName, new Array("TableName"), "DISTINCT");
    		$wnd.chellaSoft = this;
    		$wnd.pushtable.onItemUpdate = function (item, updateInfo) {
    			$wnd.jsonUpdatedStaticJS(updateInfo.getNewValue("FieldName"));
    		}
    
    		$wnd.page.addTable($wnd.pushtable, "TableName");
    	}-*/;
    While I am login it throws an error message states that "ER GroupListDescriptor Item names cannot be empty"

    What do i need to do, for this exception, And where do i need make the changes either client side or Server side?

    Thank you in advance

  2. #2
    Administrator
    Join Date
    Jul 2006
    Location
    Milan
    Posts
    1,090
    I can't replicate the issue, though I can't replicate your case exactly.
    Which version of the client library are you using?
    The message is issued when a null or empty string is supplied within an Array of field names to a Table constructor;
    however, you don't supply an Array to your NonVisualTable, but just a group id;
    which is the final value of your itemName variable?
    Are there any other Lightstreamer-related pieces of code in the page?

    I see that you dynamically create a push cell in your divTag, but then you define a NonVisualTable, which doesn't use push cells. Do you still use that element?
    Are there any other push cells defined in the page?

    By the way, it seems to me that the field name you specify in the $wnd.pushtable constructor (namely "TableName") is a typo, as later you issue getNewValue("FieldName").

  3. #3
    Member
    Join Date
    Mar 2010
    Location
    Madurai
    Posts
    12
    Hi,

    Thank you for showing interest on this DarioCrivelli.
    Here are your questions and my responses for the corresponding, I hope this will help you track the problem.

    Which version of the client library are you using? - 3.5

    which is the final value of your itemName variable? - Yes

    Are there any other Lightstreamer-related pieces of code in the page? - No

    I see that you dynamically create a push cell in your divTag, but then you define a NonVisualTable, which doesn't use push cells. Do you still use that element? - No

    Are there any other push cells defined in the page? = No

    By the way, it seems to me that the field name you specify in the $wnd.pushtable constructor (namely "TableName") is a typo, as later you issue getNewValue("FieldName"). - Yes this is a type.

    Thank you...

  4. #4
    Administrator
    Join Date
    Jul 2006
    Location
    Milan
    Posts
    1,090
    We can't find any explaination for that error message.
    Do you still get it upon page startup?
    May you please log the value of the "itemName" variable just before calling the constructor of NonVisualTable?
    Also, try commenting out the code that invokes the constructor of the NonVisualTable (and the subsequent code that depends on that object) and let's see if the exception happens again.

 

 

Similar Threads

  1. Replies: 2
    Last Post: December 24th, 2010, 08:51 AM
  2. Unexpected empty selected list
    By shreyaspurohit in forum Adapter SDKs
    Replies: 4
    Last Post: April 14th, 2009, 11:38 AM
  3. Item Names cannot be empty
    By d.verzolini in forum Client SDKs
    Replies: 2
    Last Post: September 22nd, 2008, 11:34 AM
  4. Replies: 1
    Last Post: June 4th, 2007, 09:54 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT +1. The time now is 01:32 PM.