+ Reply to Thread
Results 1 to 2 of 2

Thread: Strange esObject problem in linux version only

  1. #1
    Junior Member
    Join Date
    Jul 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Strange esObject problem in linux version only

    hi,

    i have a project that is working very fine with windows installation locally 5.3.3, but same version when installed on linux remote server with same extension and db and all permission set to 777 game doesnt behave same and gives ridiculus error in code:

    Code:
    public function onLoginResponse(e:LoginResponse):void {
    			if (e.successful) {
    				
    				var esob:EsObjectRO = e.esObject;
    
    				
    				switch (_loginType) {
    					case GUEST:
    						// do something
    						break;
    					case BUBBLE:
                                                 // do something else
    						
    						break;
    				}
    				
    			} else {
    				throw e;
    				trace("Login failed. Reason: " + e.error.name );
    			}
    		}
    in this code when runs, esObject comes as null while on windows version it is working fine, it has made me nuts, any suggestions?

  2. #2
    Administrator tcarr's Avatar
    Join Date
    Dec 2007
    Posts
    7,212
    Thanks
    80
    Thanked 1,086 Times in 1,075 Posts
    Check that your Linux installation has the same login event handler set as a server level component as the Windows installation.
    Teresa Carrigan
    Senior Engineer
    Electrotank, Inc.

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts