Re: [asterisk-users] IAX2 passing back and forth variables

2012-05-22 Thread Ruddy Gbaguidi
I cannot find it

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Danny Nicholas
Sent: 2012-05-21 10:25 
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

There was a nice thread on this back in April.

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: Monday, May 21, 2012 9:23 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

No one have an idea ?

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: 2012-05-19 15:27 
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

Sorry, the dialplan is really on server B

exten = s,n,Set(IAXVAR(TESTVAR2)=efgh) 

 

 

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Noah
Engelberth
Sent: 2012-05-19 14:45 
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

Uhm, if the dialplan is exactly as you pasted, you're not setting TESTVAR2
to anything.  You would need some sort of Set(IAXVAR(TESTVAR2)=.)

 

Noah

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: Saturday, May 19, 2012 2:17 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] IAX2 passing back and forth variables

 

Hi all,

I have two asterisk servers A and B.

And I would like from A, dial to B passing some IAX variables.

Then B handles the calls, setup some other variables that become available
to A which can continue.

So far, I have used IAXVAR function.

It works when sending call from A to B

But variables setup on B are not available on A.

 

Any idea how I can do it ?

 

Here are my dialplans.

+++

SERVER A

+++

[contextA]

exten = s,1,Set(IAXVAR(TESTVAR1)=abcd)

exten = s,n,Dial(IAX2/serverb/s,30,g)

exten = s,n,Noop(  The out variable is : ${IAXVAR(TESTVAR2)}   )  ; 
Does not work

 

 

+++

SERVER B

+++

[contextB]

exten = s,1,Noop( ${IAXVAR(TESTVAR1)} )   - Does work

exten = s,n,Set(IAXVAR(TESTVAR2)) 

exten = s,n,Hangup

 

 

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] IAX2 passing back and forth variables

2012-05-22 Thread Larry Moore

On 23/05/2012 10:46 AM, Ruddy Gbaguidi wrote:


I cannot find it

*From:*asterisk-users-boun...@lists.digium.com 
[mailto:asterisk-users-boun...@lists.digium.com] *On Behalf Of *Danny 
Nicholas

*Sent:* 2012-05-21 10:25
*To:* 'Asterisk Users Mailing List - Non-Commercial Discussion'
*Subject:* Re: [asterisk-users] IAX2 passing back and forth variables

There was a nice thread on this back in April.




Perhaps it is the thread which started on the 15th of April with the 
subject line


Set variables from one asterisk ta a second.





--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] IAX2 passing back and forth variables

2012-05-21 Thread Ruddy Gbaguidi
No one have an idea ?

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: 2012-05-19 15:27 
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

Sorry, the dialplan is really on server B

exten = s,n,Set(IAXVAR(TESTVAR2)=efgh) 

 

 

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Noah
Engelberth
Sent: 2012-05-19 14:45 
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

Uhm, if the dialplan is exactly as you pasted, you're not setting TESTVAR2
to anything.  You would need some sort of Set(IAXVAR(TESTVAR2)=.)

 

Noah

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: Saturday, May 19, 2012 2:17 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] IAX2 passing back and forth variables

 

Hi all,

I have two asterisk servers A and B.

And I would like from A, dial to B passing some IAX variables.

Then B handles the calls, setup some other variables that become available
to A which can continue.

So far, I have used IAXVAR function.

It works when sending call from A to B

But variables setup on B are not available on A.

 

Any idea how I can do it ?

 

Here are my dialplans.

+++

SERVER A

+++

[contextA]

exten = s,1,Set(IAXVAR(TESTVAR1)=abcd)

exten = s,n,Dial(IAX2/serverb/s,30,g)

exten = s,n,Noop(  The out variable is : ${IAXVAR(TESTVAR2)}   )  ; 
Does not work

 

 

+++

SERVER B

+++

[contextB]

exten = s,1,Noop( ${IAXVAR(TESTVAR1)} )   - Does work

exten = s,n,Set(IAXVAR(TESTVAR2)) 

exten = s,n,Hangup

 

 

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] IAX2 passing back and forth variables

2012-05-21 Thread Danny Nicholas
There was a nice thread on this back in April.

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: Monday, May 21, 2012 9:23 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

No one have an idea ?

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: 2012-05-19 15:27 
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

Sorry, the dialplan is really on server B

exten = s,n,Set(IAXVAR(TESTVAR2)=efgh) 

 

 

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Noah
Engelberth
Sent: 2012-05-19 14:45 
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

Uhm, if the dialplan is exactly as you pasted, you're not setting TESTVAR2
to anything.  You would need some sort of Set(IAXVAR(TESTVAR2)=.)

 

Noah

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: Saturday, May 19, 2012 2:17 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] IAX2 passing back and forth variables

 

Hi all,

I have two asterisk servers A and B.

And I would like from A, dial to B passing some IAX variables.

Then B handles the calls, setup some other variables that become available
to A which can continue.

So far, I have used IAXVAR function.

It works when sending call from A to B

But variables setup on B are not available on A.

 

Any idea how I can do it ?

 

Here are my dialplans.

+++

SERVER A

+++

[contextA]

exten = s,1,Set(IAXVAR(TESTVAR1)=abcd)

exten = s,n,Dial(IAX2/serverb/s,30,g)

exten = s,n,Noop(  The out variable is : ${IAXVAR(TESTVAR2)}   )  ; 
Does not work

 

 

+++

SERVER B

+++

[contextB]

exten = s,1,Noop( ${IAXVAR(TESTVAR1)} )   - Does work

exten = s,n,Set(IAXVAR(TESTVAR2)) 

exten = s,n,Hangup

 

 

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] IAX2 passing back and forth variables

2012-05-19 Thread Noah Engelberth
Uhm, if the dialplan is exactly as you pasted, you're not setting TESTVAR2 to 
anything.  You would need some sort of Set(IAXVAR(TESTVAR2)=...)

Noah

From: asterisk-users-boun...@lists.digium.com 
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: Saturday, May 19, 2012 2:17 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] IAX2 passing back and forth variables

Hi all,
I have two asterisk servers A and B.
And I would like from A, dial to B passing some IAX variables.
Then B handles the calls, setup some other variables that become available to A 
which can continue.
So far, I have used IAXVAR function.
It works when sending call from A to B
But variables setup on B are not available on A.

Any idea how I can do it ?

Here are my dialplans.
+++
SERVER A
+++
[contextA]
exten = s,1,Set(IAXVAR(TESTVAR1)=abcd)
exten = s,n,Dial(IAX2/serverb/s,30,g)
exten = s,n,Noop(  The out variable is : ${IAXVAR(TESTVAR2)}   )  ;  Does 
not work


+++
SERVER B
+++
[contextB]
exten = s,1,Noop( ${IAXVAR(TESTVAR1)} )   - Does work
exten = s,n,Set(IAXVAR(TESTVAR2))
exten = s,n,Hangup


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] IAX2 passing back and forth variables

2012-05-19 Thread Ruddy Gbaguidi
Sorry, the dialplan is really on server B

exten = s,n,Set(IAXVAR(TESTVAR2)=efgh) 

 

 

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Noah
Engelberth
Sent: 2012-05-19 14:45 
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] IAX2 passing back and forth variables

 

Uhm, if the dialplan is exactly as you pasted, you're not setting TESTVAR2
to anything.  You would need some sort of Set(IAXVAR(TESTVAR2)=.)

 

Noah

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ruddy Gbaguidi
Sent: Saturday, May 19, 2012 2:17 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] IAX2 passing back and forth variables

 

Hi all,

I have two asterisk servers A and B.

And I would like from A, dial to B passing some IAX variables.

Then B handles the calls, setup some other variables that become available
to A which can continue.

So far, I have used IAXVAR function.

It works when sending call from A to B

But variables setup on B are not available on A.

 

Any idea how I can do it ?

 

Here are my dialplans.

+++

SERVER A

+++

[contextA]

exten = s,1,Set(IAXVAR(TESTVAR1)=abcd)

exten = s,n,Dial(IAX2/serverb/s,30,g)

exten = s,n,Noop(  The out variable is : ${IAXVAR(TESTVAR2)}   )  ; 
Does not work

 

 

+++

SERVER B

+++

[contextB]

exten = s,1,Noop( ${IAXVAR(TESTVAR1)} )   - Does work

exten = s,n,Set(IAXVAR(TESTVAR2)) 

exten = s,n,Hangup

 

 

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users