< Previous by Date Date Index Next by Date >
< Previous in Thread Thread Index  

Re: [reSIProcate-users] How to stop send SUBSCRIBE ?


Return -1 from ClientSubscriptionHandler::onRequestRetry

 

Scott

 

From: resiprocate-users-bounces@xxxxxxxxxxxxxxx [mailto:resiprocate-users-bounces@xxxxxxxxxxxxxxx] On Behalf Of Karlsson
Sent: Sunday, May 11, 2008 10:58 AM
To: resiprocate-users@xxxxxxxxxxxxxxx
Subject: [reSIProcate-users] How to stop send SUBSCRIBE ?

 

Hi, I send a SUBSCRIBE message to server after the UA register successed:

 

 SharedPtr<SipMessage> subscription = mDum.makeSubscription(from, mMasterProfile, "message-summary");
 mDum.send(subscription);

 

But now I have encountered a problem, if the server does not respone this SUBSCRIBE message, the UA will keep send this

SUBSCRIBE, and after some times, the server replied "408 time out" to UA, but the UA still keep send the SUBSCRIBE to server

even if received 408.

 

How to let the UA stop send SUBSCRIBE to server is it's time out ?

 

 

Thanks in advance.