Hello,
I'd like to use a < select > as described here: http://www.kamailio.org/wiki/cookbooks/5.4.x/selects#contactparams_s
I'm trying to extract a parameter from the Contact URI. What I've tried to do: xlog("L_INFO", "contact.uri: $sel(contact.uri)\n"); # OK xlog("L_INFO", "contact.uri.params: $sel(contact.uri.params)\n"); # null ??
This does not seem to work... see output here :
3(10316) INFO: {1 INVITE r8wEHsAgxNIS5OJL} <script>: contact.uri: sip:+33145678901;tgrp=YC031;trunk-context=YC90@10.31.22.2:5099 3(10316) INFO: {1 INVITE r8wEHsAgxNIS5OJL} <script>: contact.uri.params: <null>
What am I doing wrong ? Maybe this is the wrong approach for what I'm trying to do ?
Regards, Nicolas. This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.
I've come up with something that works:
$var(contact_uri) = $sel(contact.uri); $var(tgrp) = $(var(contact_uri){param.value,tgrp});
Not sure if « $sel(contact.uri.params) » is supposed to work as I think it should...
De : sr-users sr-users-bounces@lists.kamailio.org De la part de Chaigneau, Nicolas Envoyé : vendredi 18 décembre 2020 15:08 À : Kamailio (SER) - Users Mailing List Objet : [SR-Users] Trying to use $sel(contact.uri.params)
Hello,
I'd like to use a « select » as described here: http://www.kamailio.org/wiki/cookbooks/5.4.x/selects#contactparams_s
I'm trying to extract a parameter from the Contact URI. What I've tried to do: xlog("L_INFO", "contact.uri: $sel(contact.uri)\n"); # OK xlog("L_INFO", "contact.uri.params: $sel(contact.uri.params)\n"); # null ??
This does not seem to work... see output here :
3(10316) INFO: {1 INVITE r8wEHsAgxNIS5OJL} <script>: contact.uri: sip:+33145678901;tgrp=YC031;trunk-context=YC90@10.31.22.2:5099 3(10316) INFO: {1 INVITE r8wEHsAgxNIS5OJL} <script>: contact.uri.params: <null>
What am I doing wrong ? Maybe this is the wrong approach for what I'm trying to do ?
Regards, Nicolas. This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.
Hello,
the doc listing suggest that the name of the parameter has to be provided, like:
$sel(contact.uri.params[name])
On the other hand, the URI in the logs has username parameters, not URI parameters.
Cheers, Daniel
On 18.12.20 15:07, Chaigneau, Nicolas wrote:
Hello,
I’d like to use a « select » as described here:
http://www.kamailio.org/wiki/cookbooks/5.4.x/selects#contactparams_s
I’m trying to extract a parameter from the Contact URI.
What I’ve tried to do:
xlog("L_INFO", "contact.uri: $sel(contact.uri)\n"); # OK
xlog("L_INFO", "contact.uri.params: $sel(contact.uri.params)\n"); # null ??
This does not seem to work… see output here :
3(10316) INFO: {1 INVITE r8wEHsAgxNIS5OJL} <script>: contact.uri: sip:+33145678901;tgrp=YC031;trunk-context=YC90@10.31.22.2:5099
3(10316) INFO: {1 INVITE r8wEHsAgxNIS5OJL} <script>: contact.uri.params: <null>
What am I doing wrong ?
Maybe this is the wrong approach for what I’m trying to do ?
Regards,
Nicolas.
This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.
Kamailio (SER) - Users Mailing List sr-users@lists.kamailio.org https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-users