Status: New
Owner: ----
Labels: Priority-Medium

New issue 107 by [email protected]: SipURI getUserAtHost and getUseratHostPort returning wrong values
http://code.google.com/p/jain-sip/issues/detail?id=107



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

missing user and a ":@<host" is returned instead

What version of the product are you using? On what operating system?
Latest svn

Please provide any additional information below.

s = ":"+this.AT; seems wrong

SipUri.prototype.getUserAtHost =function(){
    if(logger!=undefined) logger.debug("SipUri:getUserAtHost()");
    var user = "";
    if (this.authority.getUserInfo() != null)
    {
        user = this.authority.getUserInfo().getUser();
    }
    var host = this.authority.getHost().encode();
    var s = null;
    if (user=="") {
        s = null;
    } else {
        s = ":"+this.AT;
    }
    s=s+host;
    return s;
}

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "mobicents-all-issues-changes" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to