Search found 39 matches

by cemuzunlar
12 May 2010, 11:49
Forum: iPhone Objective-C API
Topic: Server stop event
Replies: 1
Views: 10509

If the server halts, you can't get a notification from client until you got disconnected from the server. (It is also possible that you may never be disconnected from the server if the server halted really bad until TCP timeout occurs.) If the server restarts (hard restart), you got disconnected so ...
by cemuzunlar
12 May 2010, 11:44
Forum: iPhone Objective-C API
Topic: adding smartFoxClient to an iphone project
Replies: 7
Views: 22071

Marcelo, thanks for the tutorial!
by cemuzunlar
31 Mar 2010, 15:54
Forum: SmartFoxServer 1.x Discussions and Help
Topic: unable to connect to H2 database using extensions
Replies: 2
Views: 5311

Re: unable to connect to H2 database using extensions

There seems to be no error messages on the console. It seems that you are making a call like this in the client: [yourSfsObject sendObject:yourDictionary roomId:38]; (and yourDictionary has a variable named "object" with a value of "Hyderabad") then you are making another call in...
by cemuzunlar
22 Oct 2009, 22:14
Forum: iPhone Objective-C API
Topic: iPhone bugs
Replies: 20
Views: 50093

This will be fixed in the next release. You can fix it by updating the function strReceived in INFSmartFoxiPhoneClient.m: - (void)strReceived:(NSString *)msg { [self debugMessage:[NSString stringWithFormat:@"INFSmartFoxiPhoneClient:strReceived"]]; // Got String respons...
by cemuzunlar
22 Oct 2009, 22:14
Forum: iPhone Objective-C API
Topic: sendXtMessage usage
Replies: 2
Views: 8049

This will be fixed in the next release. You can fix it by updating the function strReceived in INFSmartFoxiPhoneClient.m: - (void)strReceived:(NSString *)msg { [self debugMessage:[NSString stringWithFormat:@"INFSmartFoxiPhoneClient:strReceived"]]; // Got String respons...
by cemuzunlar
22 Sep 2009, 15:48
Forum: iPhone Objective-C API
Topic: loadConfig memleak
Replies: 4
Views: 15895

Thanks. We'll include this fix to the next release.
by cemuzunlar
25 Aug 2009, 09:17
Forum: iPhone Objective-C API
Topic: access room variables without joining the room?
Replies: 8
Views: 14684

Thanks for noticing the issue. The fix should be: - (void)addVar:(INFSmartFoxRoomVariable *)var { if (_vars == nil) { _vars = [[NSMutableArray array] retain]; } [_vars addObject:var]; } We'll include this fix in the next release.
by cemuzunlar
14 Aug 2009, 12:53
Forum: Server Side Extension Development
Topic: Handling user logout/leave room/disconnect
Replies: 1
Views: 5691

http://www.smartfoxserver.com/docs/docP ... /index.htm

You can use this AS3 Server Side docs. Left panel-Internal events section.
by cemuzunlar
14 Jul 2009, 09:10
Forum: iPhone Objective-C API
Topic: iPhone bugs
Replies: 20
Views: 50093

1. INFSmartFoxiPhoneClient.m in sendXtMessage:cmd:paramObj:type:roomId: at line 1234 format string should be @"%@xt%@%@%@%@%@ %d %@", not @"%@xt%@%@%@%@%@ %@ %@". because roomId is NSInteger, not an object. 2. INFSmartFoxiPhoneClient.m There is a problem with _blueBoxIpAddress m...
by cemuzunlar
16 Jun 2009, 07:32
Forum: iPhone Objective-C API
Topic: adding smartFoxClient to an iphone project
Replies: 7
Views: 22071

You need to add CFNetwork.framework to you projects linked libraries:

Open XCode->Project->Edit Active Target

Press the + link under the Linked libraries
Select CFNetwork.framework and click Add and you are done.
by cemuzunlar
10 Jun 2009, 12:01
Forum: iPhone Objective-C API
Topic: BlueBox support?
Replies: 2
Views: 12729

We are currently working on BlueBox and JSON support. They will be available soon.
by cemuzunlar
08 Jun 2009, 18:18
Forum: iPhone Objective-C API
Topic: Bug in TicTacToe sample (2nd gen iPod running 3.0 beta 5)
Replies: 2
Views: 12722

Thanks for reporting.

We didn't test it using the Beta OS. We'll try to figure out what is causing this problem.
by cemuzunlar
08 May 2009, 18:24
Forum: iPhone Objective-C API
Topic: XML in messages getting converted issue
Replies: 2
Views: 7993

SmartfoxServer Server and Client API's put public messages into CDATA blocks in the sent XML messages because they are free from text and should not be parsed as XML.

There seems to be a problem with the C# client API.
by cemuzunlar
23 Apr 2009, 10:59
Forum: iPhone Objective-C API
Topic: iPhone bugs
Replies: 20
Views: 50093

Re: iPhone bugs

In handleCreateRoomError the line: NSString *errMsg = [[[doc nodesForXPath:@"./msg/body/room/e" error:&error] objectAtIndex:0] stringValue]; is missing an @ sign so it will never actually find the e in the xml. It should be: NSString *errMsg = [[[doc nodesForXPath:@"./msg/body/ro...

Go to advanced search