similar to: Custom SIP messages

Displaying 20 results from an estimated 50000 matches similar to: "Custom SIP messages"

2014 Sep 02
2
Custom SIP-header not present in call Asterisk to Asterisk
Hello, I have a situation where a call comes in to my Asterisk server B. This call comes from another Asterisk server A. I want to tell to this server A why my server B hangs up. So just before hanging up, I add a custom SIP-header : exten => s,n,SIPAddHeader(X-My-Hangup: MaxChan) exten => s,n,Hangup() But I notice that this extra SIP-header is not send within the SIP-reponse :
2006 Jul 30
3
Returning custom error messages in ActionWebService
I want to return my own error messages from an API instead of letting the client see the stack trace. I''m returning a custom structure so I guess I could just put a member in that structure for the error message, although that seems like kind of a hack. Any suggestions? Chris
2010 Nov 05
2
How to append custom option to Contact: header on outgoing SIP INVITE msgs?
Hi list, My need is to append a site specific parameter to the Contact: header on all INVITEs exiting * via a SIP trunk. I'd like it to look something like this: Contact: <bob:3125551212 at 10.10.10.10;SITE-ID=us.here> where SITE-ID=us.here is set in a config file that * parses on startup. Or in a Dial() command option? Or I don't care exactly how. :-) It is possible to
2011 Mar 09
6
SIPAddHeader not working
Hello list, I notice that the dialplan method SIPAddHeader is not working : in dialplan : /exten => s,n,SIPAddHeader(Privacy: id)/ in SIP invite no trace of this header : /INVITE sip:0473 at sip.domain.be SIP/2.0 Via: SIP/2.0/UDP 192.168.1.106:5063;branch=z9hG4bK-5b2b1b97 From: "VC" <sip:voip2 at sip.domain.be>;tag=729476652f511c67o2 To: <sip:0473 at sip.domain.be>
2010 Mar 03
1
asterisk SIP, SIPAddHeader() and Cisco GED-125
Greetings: I'm in the situation where I'm trying to splash information picked off by an asterisk IVR into a Cisco call center environment. I'm under the impression that the ONLY way to do this is to setup socket connections with the Cisco "voice processor", or CVP, and send packets corresponding to GED-125. Cisco has a detailed 100+-page document detailing the internals of
2010 Jul 12
4
Remote-Party-ID party=called
Hello list, using Asterisk 1.4.30. I want to set the SIP-header Remote-Party-ID to display the name of the calling party on my phone in stead of the number. This is the dialplan : exten => 10,1,NoOp() exten => 10,n,SIPAddHeader(Remote-Party-ID: "eric" <sip:10 at 192.168.1.150>;party=called ) exten => 10,n,Dial(SIP/test2) This is what the CLI shows : /[Jul 12
2015 Aug 24
3
PJSIP add
I am trying to set add a SIP Header to a call before adding it to the Queue. The dial plan sends the call to my macro to perform the work. When I use chan_sip, everything works as expected. When I use PSJIP support, it's not adding the SIP header. Looking at the output, I see the macro is called in both cases. In the PJSIP case, the added sip header never is showing up in the asterisk logs
2011 Oct 07
2
Add SIP diversion header in originate from AMI?
Hello! I want to thank everyone who helped me out with tips for load balancing asterisk machines in a cluster. I have encountered a new problem that is related to SIP diversion headers in the INVITE. I make calls through the manager interface and now want to add a SIP-Diversion header that changes the CallerID of a number that is not available on the trunk, the CallerID to be visible externally
2007 Mar 04
1
using AR outside of rails
I''ve seen a number of ways to use AR outside of rails, and am wondering what other think is the best approach for my particular application. The application is in it''s own module namespace. To use it within rails you just require it in application.rb and instantiate a class to call methods on. It''s also well suited to be used from other various applications though.
2006 Jan 18
2
SipAddHeader bug?
Hi, I'm using the new SipAddHeader application on Asterisk 1.2.1, here's a snip of my extensions: exten => _9XXXXXXX,1,SipAddHeader(P-Asserted-Identity: <sip:${CALLERIDNUM} exten => _9XXXXXXX,2,SipAddHeader(P-Asserted-Identity: tel:${CALLERIDNUM}) exten => _9XXXXXXX,3,Dial(SIP/${EXTEN}@${SIPTRUNK},,tT) exten => _9XXXXXXX,4,Congestion The problems is that Asterisk
2012 Jul 13
8
How to set SIP to auto answer in the dial plan .
Hi, I am trying to write dial plan for sip to auto answer (auto attend) the incoming call to the sip phone. - If i call from sip1 to sip2 then sip2 should automatically answer the call and play some sound file. I am trying to do this but as new to the asterisk dial plan configuration , so not able Todo this. help me if anyone already done this setup. Regards Upendra. -------------- next part
2009 Jan 16
2
want to add SipAddHeader in call out file
How to add SipAddHeader in outgoing call file. I am implementing a Callback scenario, in which a user makes a call to Local Access Number. The system have to callback to the user. During callback a call file is generated. All I want, is to add SipAddHeader("pchargingvector","val") in outgoing Invite. How can I achieve this? regards, Asif
2009 Mar 05
1
Snom Aler-info Ringtone
Have someone running fine Alert-Info with a Snom 370 ( System Information: Phone Type: snom370-SIP MAC-Address: 0004132661BD IP-Address: 192.168.10.170 Firmware-Version: snom370-SIP 7.3.14 14961) i've tried exten => 200,1,SIPAddHeader(Alert-Info:<http://www.notused.com>\;info=alert-external) exten => 200,n,Dial(SIP/${EXTEN},30) Can see into the phone SIP trace is
2013 Nov 14
2
Add SIP Header for 1 SIP peer when calling a group of SIP peers
Hello, when calling a group of SIP peers like this : Dial( "SIP/inno0&SIP/inno4&SIP/inno6,30") is it possible to have a SIP header added for just 1 of these SIP peers, like only for SIP/inno0 but not for SIP/inno4 and SIP/inno6 ?? I know the function SipAddHeader(), but when I use this in the dialplan before the Dial()-command, then the header is added for all the SIP
2007 Jan 17
1
Using the SIPAddHeader Application
Hi, I'm trying to use the SIPAddHeader application to add a header containing to semicolon separated strings like this: exten => 12, 1, SIPAddHeader(X-TestHeader:a=test1;b=test2) But in the resulting INVITE message only the first part (X-TestHeader:a=test1) is added. Setting into quotation mark doesn't change anything. exten => 12, 1,
2009 Feb 05
2
Configure Asterisk to preserve SIP header?
Hello. Is it possible to configure Asterisk to preserve specific SIP INVITE headers when setting up a call? Specifically, I have a custom SIP client that sends an additional header in the INVITE request when originating a call. This is to request that the call is auto-answered by the destination phone. i.e. Call-Info: <sip:192.168.100.50>;answer-after=0 If I use wireshark to sniff
2010 Jun 28
2
sip add header
It seems that for local channels (asterisk 1.4.33) the variable Variable: SIPADDHEADER="Alert-Info: Ring Answer" (call polycom phones and ring then auto answer) Is ignored, Is this just an oversite or is there some reason? It works fine with I call the SIP phone directly - however - when I first call the Local channel - then Dial the SIP phone the SIPADDHEADER doesnt seem to do
2018 May 03
3
RFC: virtual-like methods via LLVM-style RTTI
Hello, In an effort to help LLVM-style projects save memory, I’ve been toying with some macros that provide an alternative to C++ vtables that use LLVM-style RTTI design patterns instead. Is this something that LLVM or sub-projects think is worth pursuing? Or are the macros below too ugly/problematic? Feedback would be appreciated. Thanks, Dave //===- llvm/Support/VTable.h - LLVM-style
2006 Jan 05
5
OT: SIP aware firewalls?
Hi All, Until now I've only used IAX2 to connect to ITSPs. I've been toying with a SIP connection to Gizmo Project, but not yet successfully. It brings to mind a question. At what point does it make sense to consider a SIP-aware firewall such as those from Ingate? I'd hate to move away from my m0n0wall, which is open source, easy to manage and has served me brilliantly for two
2011 Nov 27
6
Does Asterisk alter the Headers of INVITE Message
Hi all, I am trying to send an extra header in SIP INVITE Message , i.e (email="me at me.com") but when I check the Message at the target that header is not there So I is Askterisk altering the Message and Is there away to include extra headers for SIP INVITE Message? Thank u