[asterisk-bugs] [JIRA] (ASTERISK-22987) No handler for event dialog BLF

Anthony Messina (JIRA) noreply at issues.asterisk.org
Sun Dec 15 17:27:03 CST 2013


    [ https://issues.asterisk.org/jira/browse/ASTERISK-22987?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=212953#comment-212953 ] 

Anthony Messina commented on ASTERISK-22987:
--------------------------------------------

I do see the same using an Aastra 480i CT, which uses application/dialog-info+xml SUBSCRIBE events.  chan_sip appears to offer some guidance on this in terms of code comments:
{code}
/*! \brief Subscription types that we support. We support
 * - dialoginfo updates (really device status, not dialog info as was the original intent of the standard)
 * - SIMPLE presence used for device status
 * - Voicemail notification subscriptions
 */
static const struct cfsubscription_types {
	enum subscriptiontype type;
	const char * const event;
	const char * const mediatype;
	const char * const text;
} subscription_types[] = {
	{ NONE,		   "-",        "unknown",	             "unknown" },
	/* RFC 4235: SIP Dialog event package */
	{ DIALOG_INFO_XML, "dialog",   "application/dialog-info+xml", "dialog-info+xml" },
	{ CPIM_PIDF_XML,   "presence", "application/cpim-pidf+xml",   "cpim-pidf+xml" },  /* RFC 3863 */
	{ PIDF_XML,        "presence", "application/pidf+xml",        "pidf+xml" },       /* RFC 3863 */
	{ XPIDF_XML,       "presence", "application/xpidf+xml",       "xpidf+xml" },       /* Pre-RFC 3863 with MS additions */
	{ MWI_NOTIFICATION,	"message-summary", "application/simple-message-summary", "mwi" } /* RFC 3842: Mailbox notification */
};
{code}
                
> No handler for event dialog BLF
> -------------------------------
>
>                 Key: ASTERISK-22987
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-22987
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Resources/res_pjsip
>    Affects Versions: 12.0.0-beta2
>            Reporter: Zane Conkle
>
> When trying to subscribe to BLF events I get the following warning:
> WARNING[31048]: res_pjsip_pubsub.c:786 pubsub_on_rx_subscribe_request: No registered subscribe handler for event dialog
> Hints are setup. I believe I recall talking to someone earlier in the IRC about this and they said it needed to be built out in v12.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.asterisk.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the asterisk-bugs mailing list