[asterisk-users] AEL: how to copy a variable without interpretation of the content

2008-04-23 Thread Eric Dantie
I've got the next AEL: TEST=${X-CALLID}; NoOp(${TEST}); where X-CALLID=ctprueba-1208953210.12 (passed by a custom sip header) Executing I've got the error: [2008-04-23 13:24:01] WARNING[15638]: ast_expr2.y:742 op_minus: non-numeric argument -- Executing [EMAIL

Re: [asterisk-users] AEL: how to copy a variable without interpretation of the content

2008-04-23 Thread Philipp Kempgen
Eric Dantie schrieb: I've got the next AEL: TEST=${X-CALLID}; NoOp(${TEST}); where X-CALLID=ctprueba-1208953210.12 (passed by a custom sip header) Executing I've got the error: [2008-04-23 13:24:01] WARNING[15638]: ast_expr2.y:742 op_minus: non-numeric argument

Re: [asterisk-users] AEL: how to copy a variable without interpretation of the content

2008-04-23 Thread Philipp Kempgen
Philipp Kempgen schrieb: Eric Dantie schrieb: I've got the next AEL: TEST=${X-CALLID}; NoOp(${TEST}); where X-CALLID=ctprueba-1208953210.12 (passed by a custom sip header) Executing I've got the error: [2008-04-23 13:24:01] WARNING[15638]: ast_expr2.y:742 op_minus:

Re: [asterisk-users] AEL: how to copy a variable without interpretation of the content

2008-04-23 Thread Eric Dantie
Strangely, working... TEST should be ctprueba-123456789.12 but not ctprueba-123456789.12 But got the value. Thanks. - Original Message - Try TEST=${X-CALLID}; and see how you go. Eric Dantie wrote: Sorry, bad expressed, what I want to know is how can I do this in AEL: I've