VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
maxim.tsvetov at gmail... Guest
|
Posted: Thu Jun 18, 2009 9:52 am Post subject: [Freeswitch-users] CTI |
|
|
Hello!
We are seeking possibilities to use CTI features with Freeswitch.
This features are:
- click-to-dial
- call popup
- answer call,hangup
- call transfer
Does Freeswitch support any cti standarts (SIP CTI aka TR/87, TAPI, CSTA..)
or there is already written module or third-party software?
This solution should support 100-150 simultaneous Óonnections from freeswitch users.
Could you please share you experience with CTI.
Regards,
Maxim Tsvetov |
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Fri Jun 19, 2009 3:40 pm Post subject: [Freeswitch-users] CTI |
|
|
I'm not aware of any pre-existing software like this. FreeSWITCH has all the hooks for someone to create the abstraction layers for CSTA, TAPI, VoiceXML, etc. but no one has ponied up the money to pay for the development...
-MC
2009/6/18 Maxim Tsvetov <maxim.tsvetov@gmail.com (maxim.tsvetov@gmail.com)>
|
|
Back to top |
|
|
sz.krisz at freemail.hu Guest
|
Posted: Mon Jun 29, 2009 10:18 am Post subject: [Freeswitch-users] CTI |
|
|
Maxim Tsvetov wrote:
Quote: |
Hello!
We are seeking possibilities to use CTI features with Freeswitch.
This features are:
- click-to-dial
- call popup
- answer call,hangup
- call transfer
Does Freeswitch support any cti standarts (SIP CTI aka TR/87, TAPI,
CSTA..)
or there is already written module or third-party software?
...
| Currently working on some CSTA support (http://cstainside.sourceforge.net/).
The MakeCall, DeliveredEvent, ClearConnection,
TransferCall/SingleStepTransfer things required for the features above are
on the list, the AnswerCall implementation is open (I'm not sure whether the
FreeSWITCH is able to answer calls for any of the SIP clients available).
--
View this message in context: http://www.nabble.com/CTI-tp24094686p24247328.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Mon Jun 29, 2009 10:22 am Post subject: [Freeswitch-users] CTI |
|
|
Nice are you the project leader?
/b
On Jun 28, 2009, at 8:36 PM, szentesik wrote:
Quote: | Currently working on some CSTA support (http://cstainside.sourceforge.net/).
The MakeCall, DeliveredEvent, ClearConnection,
TransferCall/SingleStepTransfer things required for the features above are
on the list, the AnswerCall implementation is open (I'm not sure whether the
FreeSWITCH is able to answer calls for any of the SIP clients available). |
|
|
Back to top |
|
|
jmesquita at gmail.com Guest
|
Posted: Mon Jun 29, 2009 11:31 am Post subject: [Freeswitch-users] CTI |
|
|
I am interested to know more about this. Are you using ESL to then translate CSTA calls to FS? Wouldn't this be great to be added as an FS module as an alternative to ESL? It would enable lots of existing CTI applications to work with FS.
jmesquita
On Mon, Jun 29, 2009 at 12:20 PM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
|
|
Back to top |
|
|
sz.krisz at freemail.hu Guest
|
Posted: Mon Jun 29, 2009 1:26 pm Post subject: [Freeswitch-users] CTI |
|
|
The FS side CSTA "server" (mod_csta_socket) works as a loadable module
exactly as you described, practically adding native CSTA support to it.
(I test it only on Windows yet, but the code was made to let it build on any
FS platform if someone put some effort into writing the makefiles etc.)
Krisztian
JoĂŁo Mesquita-3 wrote:
Quote: |
I am interested to know more about this. Are you using ESL to then
translate
CSTA calls to FS? Wouldn't this be great to be added as an FS module as an
alternative to ESL? It would enable lots of existing CTI applications to
work with FS.
jmesquita
On Mon, Jun 29, 2009 at 12:20 PM, Brian West <brian@freeswitch.org> wrote:
Quote: | Nice are you the project leader?
/b
On Jun 28, 2009, at 8:36 PM, szentesik wrote:
Currently working on some CSTA support
(http://cstainside.sourceforge.net/
).
| ...
|
--
View this message in context: http://www.nabble.com/CTI-tp24094686p24259342.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
sz.krisz at freemail.hu Guest
|
|
Back to top |
|
|
brian at freeswitch.org Guest
|
|
Back to top |
|
|
jmesquita at gmail.com Guest
|
Posted: Mon Jun 29, 2009 4:11 pm Post subject: [Freeswitch-users] CTI |
|
|
I would strongly suggest that. At least for the mod itself. That way, we can all contribute with it and keep it always compatible with the lib.
jmesquita
On Mon, Jun 29, 2009 at 5:38 PM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
|
|
Back to top |
|
|
sz.krisz at freemail.hu Guest
|
Posted: Mon Jun 29, 2009 5:19 pm Post subject: [Freeswitch-users] CTI |
|
|
Yes. The project itself consist of 3 parts, the CSTAInsideCore static library for CSTA standard classes,the mod_csta_socket contains the FS specific stuff and a client program for learning purposes. Both the mod_csta_socket and the client links with the core library, all is standard C++.It is trivial to host the mod_csta_socket with FreeSWITCH, and would also agree to move the core library itself. Help from some experienced developers are always welcome.KrisztianBrian West <brian@freeswitch.org> írta:
________________________________________________________
Angol, német, spanyol, olasz, francia nyári intenzív nyelvtanfolyamok indulnak június 22-től a Bonus Nyelviskolában. |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|