04 Jul 2011 08:53:07,176 WARN [pool-1-thread-1] Extensions - {vbox}: SQL Failed: java.sql.SQLException: The DBManager is NOT active in this Zone. SQL Query failed. Please activate it the DBManager from the AdminTool
04 Jul 2011 08:53:07,177 WARN [pool-1-thread-1] entities.managers.SFSExtensionManager - com.smartfoxserver.v2.exceptions.SFSLoginException: Server down.
Unfortunately it depends on the data structure library that we use which seems to be leaving "holes" in the array.
As you know Arrays in AS are quite primitive. The length property does not really return the size of the array, it merely return the highest index available.
If you have this:
var a:Array = []
a[1000] = "Hello"
trace(a.length)
It will return a lenght of 1001, which is clearly not the size of the Array
We'll get in touch with the third party library (Polygonal) and see if a quick fix is available
Exception in thread "main" java.lang.NoClassDefFoundError: scala/collection/MapLike
at com.smartfoxserver.v2.SmartFoxServer.initLMService(SmartFoxServer.java:551)
at com.smartfoxserver.v2.SmartFoxServer.initialize(SmartFoxServer.java:487)
at com.smartfoxserver.v2.SmartFoxServer.start(SmartFoxServer.java:184)
at com.smartfoxserver.v2.Main.main(Main.java:31)
Caused by: java.lang.ClassNotFoundException: scala.collection.MapLike
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
... 4 more
09:56:24,605 INFO [Thread-1] managers.SFSZoneManager - BuddyList saveAll...
I've checked the jar files in my lib/Lib folder and they seem to match up with the new included sfs2x-lms.jar - any ideas about this?
I run into the same issue with Zone files. It turns out that the Main class parameter can not be properly filled in the Admin interface. adding the parametr <file> in the zone file manually fixes it for me,
Hi Bax, thanks for pointing that out, but the problem still persists even after I replaced my SWC with the one in the link you mentioned in that post. Any ideas?