cloudjanak / idoubs

Automatically exported from code.google.com/p/idoubs
0 stars 0 forks source link

Add support for presence #42

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

Please use labels and text to provide additional information.

Original issue reported on code.google.com by boss...@yahoo.fr on 6 Jun 2011 at 7:57

GoogleCodeExporter commented 8 years ago

Original comment by boss...@yahoo.fr on 6 Jun 2011 at 8:06

GoogleCodeExporter commented 8 years ago

Original comment by boss...@yahoo.fr on 11 Sep 2011 at 10:11

GoogleCodeExporter commented 8 years ago
when to support this feature? 

Original comment by WangN...@gmail.com on 9 Feb 2012 at 8:32

GoogleCodeExporter commented 8 years ago
The functions are already present in the iDoubs application.  You're able to 
subscribe and publish your presence to the server (see testPresence). But I 
haven't got it working because I need the XCAP contact list. Or is there 
another reason why my presence isn't notified by other clients? 

Greetings

Original comment by nightfox...@gmail.com on 6 Apr 2012 at 9:13

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
I tried to use the publish and unpublish methods from NgnPublicationSession
When I say publish in telePresence app, it works (after a bit of modifications 
though). But when I try to unpublish, the code gives Bad Access. Saw it in 
detail, unpublish leads to a recursive call in NgnPublication Session. Here it 
is:

-(BOOL)unPublishWithConfig:(ActionConfig*)_config{
    return [self unPublishWithConfig:_config];
}

-(BOOL)unPublish{
    return [self unPublishWithConfig:nil];
}

Is there anything I have missed out. Kindly help resolve!!

Original comment by charu....@gmail.com on 10 Sep 2013 at 7:11

GoogleCodeExporter commented 8 years ago
I have the same issue.
Its a recursive function,Any one got the solution for this.

Original comment by ravi.pul...@gmail.com on 26 Dec 2013 at 1:29

GoogleCodeExporter commented 8 years ago
may be it's supposed to be:
return _mSession->unPublish(_config);
instead of 
return [self unPublishWithConfig:_config];

Original comment by arma...@gmail.com on 20 Nov 2014 at 11:49

GoogleCodeExporter commented 8 years ago
https://code.google.com/p/idoubs/source/detail?r=268

Original comment by boss...@yahoo.fr on 20 Nov 2014 at 4:55