Bugs item #1814350, was opened at 2007-10-16 11:04
Message generated for change (Comment added) made by bogdan_iancu
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1814350&group_id=139143

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: modules
Group: ver devel
Status: Open
Resolution: None
Priority: 3
Private: No
Submitted By: Juha Heinanen (juhe)
Assigned to: Nobody/Anonymous (nobody)
Summary: transaction not released after handle_subscribe()

Initial Comment:
i add this old thing to the tracker, because it would be nice to get it fixed 
before 1.3 is released.

when sip ua sends an in-dialog subscribe to a non-existing subscription, i get 
the following to syslog:

Aug 31 08:58:26 tutpro /usr/sbin/openser[13320]: Handling in-dialog SUBSCRIBE 
to <sip:192.98.101.10:5090>
Aug 31 08:58:26 tutpro /usr/sbin/openser[13320]: 
PRESENCE:get_database_info:ERROR No matching subscription dialog found in 
database
Aug 31 08:58:26 tutpro /usr/sbin/openser[13320]: 
PRESENCE:handle_subscribe:ERROR getting stored info
Aug 31 08:58:26 tutpro /usr/sbin/openser[13320]: WARNING: script writer didn't 
release transaction

perhaps an ALERT would be better description of this situation than ERROR.  

my main point, however, is the warning about not releasing transaction, which 
should not be issued, because my script DOES release the transaction:

        if (method == "SUBSCRIBE") {
            if (! t_newtran()) {
                xlog("L_ERR", "Could not create new transaction for <$rm> to 
<$ru>\n");
                sl_send_reply("500","Could not create new transaction");
                exit;
            };
     xlog("L_INFO", "Handling in-dialog SUBSCRIBE to <$ru>\n");
                if (!handle_subscribe()) {
                    xlog("L_ERR", "SUBSCRIBE to <$ru> failed\n");
                    t_reply("500", "SUBSCRIBE failed");
                };
                t_release();
                exit;
        } ...

also, since handle_subscribe() fails, why is the corresponding xlog not 
executed?

-- juha

----------------------------------------------------------------------

>Comment By: Bogdan (bogdan_iancu)
Date: 2007-10-23 10:22

Message:
Logged In: YES 
user_id=1275325
Originator: NO

Hi Juha,

can you see the a stateless reply generated by the presence module in this
case of error? - having a quite look at the handle_subscribe() function, I
see that in case of error, it internally generates a stateless error reply
and then returns 0 to exit the script (that's why you do not see the
xlog).

>From logical point of view, there is a bit of mess about using TM support
here - the module sends stateless replies, but you create a
tranasction....I will have to talk with Anca about this.

regards,
bogdan

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1814350&group_id=139143

_______________________________________________
Devel mailing list
Devel@openser.org
http://openser.org/cgi-bin/mailman/listinfo/devel

Reply via email to