Search found 22667 matches

by Lapo
20 Jul 2007, 07:24
Forum: SmartFoxServer 1.x Discussions and Help
Topic: ConcurrentModificationException
Replies: 3
Views: 6724

Hi quickfox,
we're running a couple of local tests to pinpoint the problem.
If you have more log files showing the problem please zip them and send them over to our info mailbox.

( click Support > Contact us in the site navbar )
by Lapo
20 Jul 2007, 06:42
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Monitoring tools
Replies: 4
Views: 6964

Nice one! Thanks for sharing :)
by Lapo
19 Jul 2007, 06:53
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Integrating My buddy list from DB with SmartFox buddy list
Replies: 18
Views: 24331

The buddy list works with the user name (as expected). The scenario you have described is way more complex and requires a custom system (probably db-based) that can be created with a server side extension
by Lapo
18 Jul 2007, 10:10
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Possible to change room names of rooms already created?
Replies: 1
Views: 3676

Instead of all the other users having to also be ejected from the room and find a new game to join, I'd like for the 2 second user in the room to automatically take control of the room, and have the game name change to match (ie, from PercyPeas game, to players2 game) You can accomplish this task b...
by Lapo
18 Jul 2007, 06:37
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Invalid Socket on Disconnect
Replies: 2
Views: 4937

You should better explain, are you saying you call:

Code: Select all

sfs.disconnect();

in the onConnectionLost event?

It's not needed because you're already disconnected
by Lapo
17 Jul 2007, 07:14
Forum: SmartFoxServer 1.x Discussions and Help
Topic: MaxUserIdleTime largest allowed setting
Replies: 4
Views: 5495

The highest value is 2^31 = 2.147.483.648 (seconds)
= 24855 days
= 68 years

:shock: :)

btw: beware that this way idle socket connections will keep using resources, you shouldn't really use a value higher than a few hours, unless you implement your own alternative disconnection system
by Lapo
16 Jul 2007, 07:33
Forum: SmartFoxServer 1.x Discussions and Help
Topic: TheoChat and SmartFoxServer 1.5
Replies: 6
Views: 15836

TheoChat and SmartFoxServer 1.5

Since SmartFoxServer 1.5 we have dropped support for AS 1.0 in favour of the new API for Actionscript 3.0 ( Flash CS3 and Flex 2 ) Since TheoChat is still based on AS 1.0 APIs we highly recommend that you run it in conjunction wiht SmartFoxServer 1.4.x which fully supports Actionscript 1 on the clie...
by Lapo
16 Jul 2007, 07:17
Forum: SmartFoxServer 1.x Discussions and Help
Topic: MaxWriterQueue and OutQueueThreads
Replies: 2
Views: 6080

Also, I've increased OutQueueThreads. I assume this is per server? The documentation states OutQueueThreads should be half the number of processors but I don't understand what that has to do with it as smartfox says it is using 136 threads Ouch! 136 :shock: Normally SFS runs with 10-16 threads in t...
by Lapo
16 Jul 2007, 07:14
Forum: SmartFoxServer 1.x Discussions and Help
Topic: MaxWriterQueue and OutQueueThreads
Replies: 2
Views: 6080

The documentation states that the outgoing message queue is per user, but doesn't state the actual config.xml setting name. Is that MaxWriterQueue? There's just one max queue display in the admin tool so I would have guessed that it's one setting per server. Our user base is over 750 and growing ra...
by Lapo
14 Jul 2007, 10:13
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Installation problem
Replies: 7
Views: 11150

Yes, you can skip installation.
Just move to the Server folder and type:
./start.sh


Java runtime (JRE) must be installed. We reccomend version 1.5 or higher
by Lapo
13 Jul 2007, 07:11
Forum: SmartFoxServer 1.x Discussions and Help
Topic: SFS & AS3 Class Question
Replies: 4
Views: 6361

Here you go: package { import it.gotoandplay.smartfoxserver.SmartFoxClient; import it.gotoandplay.smartfoxserver.SFSEvent; public class SFSConnect extends EventDispatcher { public var sfs:SmartFoxClient; public function SFSConnect() { // Create instance sfs = new SmartFoxClien...
by Lapo
13 Jul 2007, 06:51
Forum: SmartFoxServer 1.x Discussions and Help
Topic: userLost does not change getUserList length?
Replies: 4
Views: 6867

Re: userLost does not change getUserList length?

I noticed when I test "userLost" by closing my browser and then login again, the getUserCount returns 1 which is correct but the getUserList returns a length of 2 and the first value is null. This is a server-side extension... Brent I don't follow you... there's no getUserList on the serv...
by Lapo
13 Jul 2007, 06:48
Forum: SmartFoxServer 1.x Discussions and Help
Topic: SFS & AS3 Class Question
Replies: 4
Views: 6361

You can add multiple listener to the SmartFoxClient object so you could add another handler that listens from the timeline, but in terms of cleanness it's not very good. A better alternative is tha you re-dispatch the event by sub-classing the Flash/Flex EventDispatcher class from your SFSConnect cl...
by Lapo
13 Jul 2007, 06:29
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Monitoring tools
Replies: 4
Views: 6964

The problem is using the API from a Linux command line app. The API are written for Flash Actionscript. Maybe you could write a Flash app that talks to a custom extension and reports problems, if any occur. It could also send emails from time to time etc... Sources of the admin tool are not available
by Lapo
12 Jul 2007, 14:41
Forum: Server Side Extension Development
Topic: API Documentation for Java
Replies: 3
Views: 7321

Hi zood,
yep this is going to be added as soon as possible.
Meanwhile, you can learn more about those classes by checking the Actionscript Server Side documentation (Chapter 7.1 of the docs)

Check the getDatabaseManager() method

Go to advanced search