Re: [Freeswitch-users] answer command

2009-08-13 Thread Diego Viola
Hey Michael, Just wondering something, I have found that you added conference_set_auto_outcall on the dptools wiki, but I could not find that function in the mod_dptools.c, shouldn't that be part of the mod_conference wiki article? =D. Best regards, Diego On Wed, Aug 12, 2009 at 1:50 PM,

Re: [Freeswitch-users] answer command

2009-08-13 Thread Michael Jerris
It probably belongs there. It's a wiki, feel free to fix it. What does this have to do with this thread? On Aug 13, 2009, at 4:03 AM, Diego Viola diego.vi...@gmail.com wrote: Hey Michael, Just wondering something, I have found that you added conference_set_auto_outcall on the dptools

Re: [Freeswitch-users] answer command

2009-08-13 Thread Diego Viola
Err, I asked if that was wrong to fix it. On Thu, Aug 13, 2009 at 2:15 PM, Diego Viola diego.vi...@gmail.com wrote: I was talking with Michael about fixing stuff in the wiki, so I just asked to fix that also. On Thu, Aug 13, 2009 at 9:10 AM, Michael Jerris m...@jerris.com wrote: It

Re: [Freeswitch-users] answer command

2009-08-12 Thread Maxim Tsvetov
I've tried to use answer command from outbound event socket and it's working, but the problem is that FS answering the call, but SIP Client (we tried this with EyeBeam and CISCO 7960) doesn't know that call was answered. So, as long as FS doesn't know what to do with this number it then

Re: [Freeswitch-users] answer command

2009-08-12 Thread Seven Du
It's not Eyebeam but FS hung up the call because it have nothing to do after answer. You should either playback a sound, do the echo command, record, hold the call, bridge to another channel or transfer somewhere else. On Aug 12, 2009, at 4:54 PM, Maxim Tsvetov wrote: I've tried to use

Re: [Freeswitch-users] answer command

2009-08-12 Thread Maxim Tsvetov
I will try to paraphrase my question. Is there any possibility to answer call from CTI application and synchronise answer with answer in SIP client?Maybe we can use SIP functions in our CTI application instead of FS api commands? I'm trying to find the way to make prototype of lineAnswer command

Re: [Freeswitch-users] answer command

2009-08-12 Thread Brian West
Well you can only truly answer an inbound call to FS... you can't force answer an outbound call. /b On Aug 12, 2009, at 11:49 AM, Maxim Tsvetov wrote: I will try to paraphrase my question. Is there any possibility to answer call from CTI application and synchronise answer with answer in

Re: [Freeswitch-users] answer command

2009-08-12 Thread Maxim Tsvetov
If I have two FS extensions A and B. I'm calling from A to B and want to answer from B-side in my CTI application and to make SIP phone to be synchronised to my CTI application. Is it possible to do it? Brian West-3 wrote: Well you can only truly answer an inbound call to FS... you can't

Re: [Freeswitch-users] answer command

2009-08-12 Thread Michael Jerris
Sip does not support this functionality. The called device would have to support this via some other mechanism such as ctsa which I have seen recently someone was looking at for freeswitch. So the first issue you must resolve is the called device needs to support some way to do this.

[Freeswitch-users] answer command

2009-08-11 Thread Maxim Tsvetov
Hello, I found in WIKI list of supported commands http://wiki.freeswitch.org/wiki/Mod_commands. I need command answer but it doesn't exist (Freeswitch 1.04, Win32) That's what Freeswitch replies for this command: answer: Command not found! Сould you please help? Regards, Maxim Tsvetov

Re: [Freeswitch-users] answer command

2009-08-11 Thread Szymon Olko
Maxim Tsvetov pisze: Hello, I found in WIKI list of supported commands http://wiki.freeswitch.org/wiki/Mod_commands. I need command answer but it doesn't exist (Freeswitch 1.04, Win32) That's what Freeswitch replies for this command: answer: Command not found! Сould you please

Re: [Freeswitch-users] answer command

2009-08-11 Thread Maxim Tsvetov
Thank you. Is it possible to use this command from command line or via event_socket interface? Szymon Olko wrote: Maxim Tsvetov pisze: Hello, I found in WIKI list of supported commands http://wiki.freeswitch.org/wiki/Mod_commands. I need command answer but it doesn't exist

Re: [Freeswitch-users] answer command

2009-08-11 Thread Milena
sendmsg call-command: execute execute-app-name: answer\n\n the example is in this wiki page: http://wiki.freeswitch.org/wiki/Event_socket_outbound http://wiki.freeswitch.org/wiki/Event_socket_outbound 2009/8/11 Maxim Tsvetov maxim.tsve...@gmail.com Thank you. Is it possible to use this

Re: [Freeswitch-users] answer command

2009-08-11 Thread daqiang wang
why not use: session:answer() 2009/8/11 Maxim Tsvetov maxim.tsve...@gmail.com Thank you. Is it possible to use this command from command line or via event_socket interface? Szymon Olko wrote: Maxim Tsvetov pisze: Hello, I found in WIKI list of supported commands

Re: [Freeswitch-users] answer command

2009-08-11 Thread Maxim Tsvetov
I've tried all this command from FS console and all of them return Unknown command. Milena-6 wrote: sendmsg call-command: execute execute-app-name: answer\n\n the example is in this wiki page: http://wiki.freeswitch.org/wiki/Event_socket_outbound

Re: [Freeswitch-users] answer command

2009-08-11 Thread Maxim Tsvetov
I've tried all this command from FS console and all of them return Unknown command daqiang wang wrote: why not use: session:answer() 2009/8/11 Maxim Tsvetov maxim.tsve...@gmail.com Thank you. Is it possible to use this command from command line or via event_socket

Re: [Freeswitch-users] answer command

2009-08-11 Thread Seven Du
answer only works on outbound event socket. why you don't answer in a dialplan? what's scenario you use this? On Aug 11, 2009, at 9:31 PM, Maxim Tsvetov wrote: I've tried all this command from FS console and all of them return Unknown command daqiang wang wrote: why not use:

Re: [Freeswitch-users] answer command

2009-08-11 Thread Milena
you can send the answer on the console too;this is *how to* use *sendmsg*from the console: http://wiki.freeswitch.org/wiki/Event_Socket#sendmsg http://wiki.freeswitch.org/wiki/Event_Socket#sendmsgbtw, the previous command i gave you works just fine on event socket, it will work for you if you

Re: [Freeswitch-users] answer command

2009-08-11 Thread Brian West
Its not an api command the docs are wrong and should be fixed. /b On Aug 11, 2009, at 8:31 AM, Maxim Tsvetov wrote: I've tried all this command from FS console and all of them return Unknown command ___ FreeSWITCH-users mailing list

Re: [Freeswitch-users] answer command

2009-08-11 Thread Milena
Hello Brian, I wanna fix the wiki, but to make sure i got it right, does it only work on outbound event socket? or is there any other scenario where it would work. Thank you. 2009/8/11 Brian West br...@freeswitch.org Its not an api command the docs are wrong and should be fixed. /b On

Re: [Freeswitch-users] answer command

2009-08-11 Thread Michael Collins
On Tue, Aug 11, 2009 at 9:05 AM, Milena testeado...@gmail.com wrote: Hello Brian, I wanna fix the wiki, but to make sure i got it right, does it only work on outbound event socket? or is there any other scenario where it would work. FYI, Diego Viola fixed the wiki. (Thanks Diego!) -MC

Re: [Freeswitch-users] answer command

2009-08-11 Thread Diego Viola
Michael, you're welcome :). Milena, answer is a mod_dptools command, you can use it from the XML dialplan or from the event socket outbound. mod_commands API are APIs that you execute from the socket, event socket inbound, etc. But you can also execute them from event socket outbound using the

Re: [Freeswitch-users] answer command

2009-08-11 Thread Diego Viola
I suggest that you learn the differences between mod_commands commands and mod_dptools applications, and also the interfaces where you can access and use them. As said before, mod_dptools is accessible from dialplan, event socket outbound, etc. and mod_commands is accessible from the CLI, event

Re: [Freeswitch-users] answer command

2009-08-11 Thread Michael Collins
On Tue, Aug 11, 2009 at 1:10 PM, Diego Viola diego.vi...@gmail.com wrote: Michael, you're welcome :). Milena, answer is a mod_dptools command, you can use it from the XML dialplan or from the event socket outbound. mod_commands API are APIs that you execute from the socket, event socket