1. Brekeke Product Name and version:
2. Java version:
3. OS type and the version:
4. UA (phone), gateway or other hardware/software involved:
5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html :
6. Your problem:
It looks like &from = caller-id example 570-111-2222 and &user is the pbx user example 1003. So i would think the above would give me
"5701112222" <sip:1003@myip.com> when it's looking for a match in the ARS but if i populate the &from with anything other than a pbx user 3pcc doesn't work. It gives me a successful session number but the call does not happen. I need to send the caller id to the called phone. Can you tell what i am doing wrong? Long day today.
Thanks.
3pcc and caller-id
Moderator: Brekeke Support Team
-
- Posts: 528
- Joined: Tue Sep 20, 2005 9:10 am
- Location: Tannersville, Pennsylvania
http://www.brekeke-sip.com/download/bpb ... ced_en.pdf
last page "13. Third Party Call Control"
url format
http://<server-ip-address>:<server-port>/pbx/3pcc?to=<callee-number>&from=<caller-number>
&user=<caller-user>&type=<type>
maybe need &user=<a pbx user number>
last page "13. Third Party Call Control"
url format
http://<server-ip-address>:<server-port>/pbx/3pcc?to=<callee-number>&from=<caller-number>
&user=<caller-user>&type=<type>
maybe need &user=<a pbx user number>
-
- Posts: 528
- Joined: Tue Sep 20, 2005 9:10 am
- Location: Tannersville, Pennsylvania
Thanks for the reply hope. I read the doc and i think the confusion is that i only questioned two fields, from and user because i'm not clear about that. it appears from must be a valid pbx user and user must be a valid pbx user. I'm trying to send the "display name" which is how we send the caller-id to our carriers. I really don't want to set up a different ars entry for each user's outgoing calls to put in their caller-id number. What i'm talking about is what 3pcc sends the ARS. It's not sending the caller-id so i must catch the call in ARS and add the caller-id. The part in quotes "5701112222".
My simple question is shouldn't the from be where you put in the callers caller-id and the user be the pbx user? If so that doesn't work unless the from is a valid pbx user.
My simple question is shouldn't the from be where you put in the callers caller-id and the user be the pbx user? If so that doesn't work unless the from is a valid pbx user.
maybe use default ars plugin "lookup" to access a note in which listing each pbx user and the display name should be used
at page 9
http://www.brekeke-sip.com/download/bpb ... ing_en.pdf
create a note, in it put:
<pbxuser> <display_name>
put space between pbxuser and display name
in ARS Pattern-OUT to carrier, set
user: ^(.+)$
plugin: lookup
param: note_name,&u1
return: (.+)
set pattern-out deploy pattern
From: "&p1"<current_setting>
&p1 is return value from lookup plugin
at page 9
http://www.brekeke-sip.com/download/bpb ... ing_en.pdf
create a note, in it put:
<pbxuser> <display_name>
put space between pbxuser and display name
in ARS Pattern-OUT to carrier, set
user: ^(.+)$
plugin: lookup
param: note_name,&u1
return: (.+)
set pattern-out deploy pattern
From: "&p1"<current_setting>
&p1 is return value from lookup plugin
-
- Posts: 528
- Joined: Tue Sep 20, 2005 9:10 am
- Location: Tannersville, Pennsylvania