Search found 23 matches

by repo1
28 Feb 2017, 09:35
Forum: SFS2X Questions
Topic: User login then instantaly auto disconnected (problem happen sometime after restart work fine)
Replies: 9
Views: 9608

Re: User login then instantaly auto disconnected (problem happen sometime after restart work fine)

This explains multiple things. This error indicates that your client code is sending requests prior to having logged in or, alternatively, after a LOGIN_ERROR. In either case a client is not allowed to send requests if he's not successfully logged in. Make sure to double check your client code for ...
by repo1
28 Feb 2017, 09:20
Forum: SFS2X Questions
Topic: User login then instantaly auto disconnected (problem happen sometime after restart work fine)
Replies: 9
Views: 9608

Re: User login then instantaly auto disconnected (problem happen sometime after restart work fine)

This explains multiple things. This error indicates that your client code is sending requests prior to having logged in or, alternatively, after a LOGIN_ERROR. In either case a client is not allowed to send requests if he's not successfully logged in. Make sure to double check your client code for ...
by repo1
27 Feb 2017, 13:13
Forum: SFS2X Questions
Topic: User login then instantaly auto disconnected (problem happen sometime after restart work fine)
Replies: 9
Views: 9608

Re: User login then instantaly auto disconnected (problem happen sometime after restart work fine)

There's nothing in your code that causes a disconnection. Can you actually reproduce the issue all the time? If so how? i dont know the causes of problem before i tried this code package dyanamicroom; import com.smartfoxserver.v2.api.CreateRoomSettings; import com.smartfoxserver.v2.entities.Room; i...
by repo1
26 Feb 2017, 17:55
Forum: SFS2X Questions
Topic: User login then instantaly auto disconnected (problem happen sometime after restart work fine)
Replies: 9
Views: 9608

Re: User login then instantaly auto disconnected (problem happen sometime after restart work fine)

Well, I have no idea, since the error is coming from your code :) Since you can't post code snippets I can only recommend to debug whatever code you're running. Is it using the TaskScheduler? If so make sure to take a look here: http://docs2x.smartfoxserver.com/GettingStarted/howtos#item7 thanks co...
by repo1
26 Feb 2017, 11:25
Forum: SFS2X Questions
Topic: User login then instantaly auto disconnected (problem happen sometime after restart work fine)
Replies: 9
Views: 9608

Re: User login then instantaly auto disconnected (problem happen sometime after restart work fine)

Hi, can you please explain what is the problem and what steps are necessary to reproduce it? Also it wouldn't hurt to know which SFS2X version you're using, which API platform and version. Thanks First of All Thanks so much for reply :D I am using smart fox 2.12.2 on window server 2012(x64) The Ext...
by repo1
26 Feb 2017, 10:59
Forum: Job offers and requests
Topic: Job Post
Replies: 1
Views: 7789

Job Post

Hello Everyone
I want to create Smartfox Extension for Throw Data from sql server to smartfox web client

interested guys please reply on this post
by repo1
25 Feb 2017, 15:10
Forum: SFS2X Questions
Topic: Smartfox Extension Stop working After few days
Replies: 1
Views: 3644

Smartfox Extension Stop working After few days

Extension Info Hello sir i have created extension for real time feed update this extension throw data to the room when change in file related to room there is one timer for every file when change occur in file it will throw data to room Problem Description Extension stop After few days , i have to w...
by repo1
21 Feb 2017, 06:51
Forum: SFS2X Questions
Topic: User login then instantaly auto disconnected (problem happen sometime after restart work fine)
Replies: 9
Views: 9608

User login then instantaly auto disconnected (problem happen sometime after restart work fine)

package dyanamicroom; import com.smartfoxserver.v2.api.CreateRoomSettings; import com.smartfoxserver.v2.entities.Room; import com.smartfoxserver.v2.entities.User; import com.smartfoxserver.v2.entities.data.ISFSObject; import com.smartfoxserver.v2.entities.data.SFSObject; import com.smartfoxserver.v...
by repo1
06 Jan 2017, 19:31
Forum: SFS2X Questions
Topic: messages are bundled into TCP packets if smaller then 900 bytes
Replies: 1
Views: 3259

messages are bundled into TCP packets if smaller then 900 bytes

Problem websocket bundled 3 or 4 packet if packet size is small i found it is Nagle's algorithm but in my case frame always will comes in small size then 400 bytes then what is solution for it i tried <tcpNoDelay>true</tcpNoDelay> in my config file but not working This is my core.xml <!-- SmartFoxSe...
by repo1
28 Dec 2016, 19:37
Forum: SFS2X Questions
Topic: Exception in Thread Timer User Is Not Joined Target Room
Replies: 20
Views: 19793

Re: Exception in Thread Timer User Is Not Joined Target Room

Thanks lapo i increase packet size and it works so fine

Thankssssss so muchhhhhh
by repo1
28 Dec 2016, 16:34
Forum: SFS2X Questions
Topic: Exception in Thread Timer User Is Not Joined Target Room
Replies: 20
Views: 19793

Re: Exception in Thread Timer User Is Not Joined Target Room

Means clock update after 300ms actual update time is 100ms
Example
clock should be
12:00:000
12:00:100
12:00:200
12:00:300
12:00:400
12:00:500
12:00:600
12:00:700
12:00:800
12:00:900
and so on

But Current clock is
12:00:000
12:00:300
12:00:600
12:00:900
12:01:200
and so on
by repo1
28 Dec 2016, 11:51
Forum: SFS2X Questions
Topic: Exception in Thread Timer User Is Not Joined Target Room
Replies: 20
Views: 19793

Re: Exception in Thread Timer User Is Not Joined Target Room

Please check screen shot

Here server data throw 10 times in 1000ms
but browser only can show 3 time in 1000ms
mobile browser can show 9 times in 1000ms

http://193.70.40.179/lablesocket (see this link you will find frame in chrome firebug or console)
by repo1
27 Dec 2016, 22:23
Forum: SFS2X Questions
Topic: Exception in Thread Timer User Is Not Joined Target Room
Replies: 20
Views: 19793

Re: Exception in Thread Timer User Is Not Joined Target Room

Hi can you give us paid code support Bugs 1) 10 Tcp frame comes in 1000ms from server (as seen in web developer tools) In mobile chrome browser can show 8 to 9 frames , dekstop browser only can show 3 to 4 frame and on browser on server can show all the frame none of missing see This demo link [url]...
by repo1
26 Dec 2016, 21:39
Forum: SFS2X Questions
Topic: Exception in Thread Timer User Is Not Joined Target Room
Replies: 20
Views: 19793

Re: Exception in Thread Timer User Is Not Joined Target Room

Thank Its works fine all any suggestion to improve code , am posting my code for more improve package dyanamicroom; import com.smartfoxserver.v2.api.CreateRoomSettings; import com.smartfoxserver.v2.entities.Room; import com.smartfoxserver.v2.entities.User; import com.smartfoxserver.v2.entities.data....
by repo1
24 Dec 2016, 16:03
Forum: SFS2X Questions
Topic: Exception in Thread Timer User Is Not Joined Target Room
Replies: 20
Views: 19793

Re: Exception in Thread Timer User Is Not Joined Target Room

Can you please try to print the result of this call to your logs: trace("IS JOINED: " + owner.isJoinedInRoom(room)); Can you also specify which SFS2X version you're running and what client platform you're working with? Thanks I am using sfs2x 2.9.0 After your code screen shot is in attach...

Go to advanced search