Search found 43 matches

by GrinReaper
14 Jun 2017, 07:38
Forum: SFS2X Questions
Topic: Error in getApi().getUserById(userId) during user login
Replies: 6
Views: 8452

Re: Error in getApi().getUserById(userId) during user login

We'll try that and deploy it to production. Hopefully, the next time the issue occurs, we'll be able to catch the Exception and take appropriate action to correct the issue.

Thank you :D
by GrinReaper
13 Jun 2017, 10:54
Forum: SFS2X Questions
Topic: Error in getApi().getUserById(userId) during user login
Replies: 6
Views: 8452

Re: Error in getApi().getUserById(userId) during user login

I think you need to better debug your server side code, the behavior you're describing makes little sense and suggests that something else is going on. We've added traces before and after the code block, and in the case that I've mentioned the traces after the code block don't get output in the log...
by GrinReaper
13 Jun 2017, 09:36
Forum: SFS2X Questions
Topic: Error in getApi().getUserById(userId) during user login
Replies: 6
Views: 8452

Re: Error in getApi().getUserById(userId) during user login

What is not clear to me is how your userMap works. Does it contain custom IDs that are generated by you? If so they won't work with the getUserById() method because every user object already has its own auto-generated userID. Yes, I understand that. We're passing userId which is the SFS generated I...
by GrinReaper
13 Jun 2017, 08:49
Forum: SFS2X Questions
Topic: Error in getApi().getUserById(userId) during user login
Replies: 6
Views: 8452

Error in getApi().getUserById(userId) during user login

We're using the following code to retrieve the user object of a logged-in player Integer userId = userMap.get(playerId); User user = null; if(userId !=null && userId != -1){ user = getApi().getUserById(userId); if(user != null) getApi().joinRoom(user, getParentRoom(), null, true, null, true,...
by GrinReaper
02 Feb 2017, 11:51
Forum: SFS2X Questions
Topic: Extra parameter in Extension command
Replies: 1
Views: 3668

Extra parameter in Extension command

Hi, I am sending an extension command to a client using the send() method of the BaseClientRequestHandler class. On getting the response dump at the client's end, the trace was as follows: (utf_string) forRmId: 768 (utf_string) msgStr: Data is unavailable (utf_string) _cmd: levelProgressInfoResp The...
by GrinReaper
16 Dec 2016, 10:21
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Socket Policy Server
Replies: 1
Views: 7157

Socket Policy Server

We've been using the Socket Policy Server provided by you at this link: http://www.smartfoxserver.com/download/get/42 for a couple of years now. Until last week, we've never had any issue with it. But since 13th December, 2016 (since the Flash player 24.0.0.x update was pushed), we've seen that ther...
by GrinReaper
14 Jul 2016, 09:28
Forum: SFS2X Java / Android API
Topic: Remove unneeded logs
Replies: 11
Views: 18132

Re: Remove unneeded logs

So, we managed to solve the issue. The first problem was that we were using an old version of the SFS2X Java client API. So, we downloaded the latest API and tried to use it. Then, we learned that we need to use Java 1.7 instead of Java 1.6 which is what we were using. We updated Java and everything...
by GrinReaper
13 Jul 2016, 12:32
Forum: SFS2X Java / Android API
Topic: Remove unneeded logs
Replies: 11
Views: 18132

Re: Remove unneeded logs

Can you provide us with the test application that you've written? We'd like to compare the code with ours and see what we're doing differently.
by GrinReaper
13 Jul 2016, 09:11
Forum: SFS2X Java / Android API
Topic: Remove unneeded logs
Replies: 11
Views: 18132

Re: Remove unneeded logs

Even that didn't work. We're still getting the logs. :(
by GrinReaper
13 Jul 2016, 06:18
Forum: SFS2X Java / Android API
Topic: Remove unneeded logs
Replies: 11
Views: 18132

Re: Remove unneeded logs

This is the code that we use to connect:

Code: Select all

sfs = new SmartFox(false);
sfs.connect("192.168.132.25",9933);


We're not using ConfigData object to connect. :?
by GrinReaper
12 Jul 2016, 09:13
Forum: SFS2X Java / Android API
Topic: Remove unneeded logs
Replies: 11
Views: 18132

Re: Remove unneeded logs

We've already used set the debug flag as false in the code. But we're still getting the logs that I've mentioned. The other SFS logs are not printed, but only those lines still keep getting printed.
by GrinReaper
12 Jul 2016, 05:59
Forum: SFS2X Java / Android API
Topic: Remove unneeded logs
Replies: 11
Views: 18132

Remove unneeded logs

We are getting these logs printed frequently whenever we use the client and it hampers ours debugging effort since it creates an unnecessary clutter among the logs that we need to debug. Handling Header Size. Length: 376 (small) 14:53:55,583 INFO [sfs2x.client.core.SFSIOHandler] (New I/O worker #1) ...
by GrinReaper
28 Apr 2016, 11:23
Forum: SFS2X Questions
Topic: How does sfsApi().removeRoom() work?
Replies: 4
Views: 6583

Re: How does sfsApi().removeRoom() work?

Cool. Thanks :)
by GrinReaper
27 Apr 2016, 10:33
Forum: SFS2X Questions
Topic: How does sfsApi().removeRoom() work?
Replies: 4
Views: 6583

How does sfsApi().removeRoom() work?

As per my understanding (I think I might have read this written somewhere in the docs), when sfsApi().removeRoom() is called, the SFS removes the room only if there is no user currently joined in the room. So, based on that assumption, I executed the following code: int roomId = room.getId(); trace(...

Go to advanced search