Comment #1 on issue 65 by [email protected]: Exception on createACK when 200 OK contains record route headers
http://code.google.com/p/jain-sip/issues/detail?id=65

Also, other typos:

    for(var i=recordRouteList.size()-1;i>=0;i--)
    {
        var rr =  recordRouteList[i];
        var route = new Route();
        route.setAddressrr.getAddress();
        route.setParameters(rr.getParameters());
        routeList.add(route);
    }


Should be

    for(var i=recordRouteList.size()-1;i>=0;i--)
    {
        var rr = recordRouteList.get(i);
        var route = new Route();
        route.setAddress(rr.getAddress());
        route.setParameters(rr.getParameters());
        routeList.add(route);
    }


That's change recordRouteList[i] by recordRouteList.get(i) and add missing parenthesis in route.setAddressrr.getAddress();

--
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