Re: [Freeswitch-users] ESL Wrapper

2009-03-02 Thread Gopal krishnan
Hi, Actually what is the difference between ESL in FS 1.0.3 and event socket in FS 1.0.2. Is the FS 1.0.3 ESL superior? On Fri, Feb 27, 2009 at 6:43 PM, Rex_Alex rex.alex...@yahoo.com wrote: Hi All, I did what you have all suggested. Now its working perfectly. Thanks a lot for all your

Re: [Freeswitch-users] ESL Wrapper

2009-03-02 Thread Anthony Minessale
pardon? ESL is just a client library for event socket to make it easier to make event socket apps. ESL == Event Socket Library On Mon, Mar 2, 2009 at 3:29 AM, Gopal krishnan gopal2krish...@gmail.comwrote: Hi, Actually what is the difference between ESL in FS 1.0.3 and event socket in FS

Re: [Freeswitch-users] ESL Wrapper

2009-02-27 Thread Rex_Alex
Hi All, I did what you have all suggested. Now its working perfectly. Thanks a lot for all your assistance. Rex. Raymond Chandler wrote: and it will probably be a good idea to do make phpmod-install so that the .so and .php files gets into the correct place to be included -Ray

Re: [Freeswitch-users] ESL Wrapper

2009-02-26 Thread Rex_Alex
Hi All, I tried svn up ./bootstrap.sh ./configure make install and did Mathieu's suggestion but getting error as below, [r...@server esl]# make phpmod make MYLIB=../libesl.a SOLINK=-shared -Xlinker -x CFLAGS=-I/root/freeswitch-1.0.3/libs/esl/src/include -DHAVE_EDITLINE -g -ggdb

Re: [Freeswitch-users] ESL Wrapper

2009-02-26 Thread Mathieu Rene
You need your distro's php dev pakage. On 26-Feb-09, at 6:25 AM, Rex_Alex wrote: Hi All, I tried svn up ./bootstrap.sh ./configure make install and did Mathieu's suggestion but getting error as below, [r...@server esl]# make phpmod make MYLIB=../libesl.a SOLINK=- shared -Xlinker -x

Re: [Freeswitch-users] ESL Wrapper

2009-02-26 Thread Raymond Chandler
and it will probably be a good idea to do make phpmod-install so that the .so and .php files gets into the correct place to be included -Ray Mathieu Rene wrote: You need your distro's php dev pakage. On 26-Feb-09, at 6:25 AM, Rex_Alex wrote: Hi All, I tried svn up ./bootstrap.sh

Re: [Freeswitch-users] ESL Wrapper

2009-02-26 Thread Rex_Alex
Hi Mathieu, But other php scripts are working fine. Only when I am tring Single_Command.php with ESP.php, it's not working. Rex. Mathieu Rene wrote: You need your distro's php dev pakage. On 26-Feb-09, at 6:25 AM, Rex_Alex wrote: Hi All, I tried svn up ./bootstrap.sh ./configure

Re: [Freeswitch-users] ESL Wrapper

2009-02-26 Thread Anthony Minessale
the esl php mod is a binary mod which must be compiled so it requires the devel add on for php On Thu, Feb 26, 2009 at 12:51 PM, Rex_Alex rex.alex...@yahoo.com wrote: Hi Mathieu, But other php scripts are working fine. Only when I am tring Single_Command.php with ESP.php, it's not working.

Re: [Freeswitch-users] ESL Wrapper

2009-02-26 Thread Michael Collins
On Thu, Feb 26, 2009 at 10:51 AM, Rex_Alex rex.alex...@yahoo.com wrote: Hi Mathieu, But other php scripts are working fine. Only when I am tring Single_Command.php with ESP.php, it's not working. Rex. That may be true but the php-devel package is necessary for building the ESL wrapper for

Re: [Freeswitch-users] ESL Wrapper

2009-02-26 Thread Rex_Alex
Hi, Yea, you are right it's CentOS version 5.2. Let me try the same and then I will reply you with status. Thanks, Rex. mercutioviz wrote: On Thu, Feb 26, 2009 at 10:51 AM, Rex_Alex rex.alex...@yahoo.com wrote: Hi Mathieu, But other php scripts are working fine. Only when I am tring

[Freeswitch-users] ESL Wrapper

2009-02-25 Thread Rex Alex
Hi All, I am new to freeswitch but installed(freeswitch version 1.0.3), configured and tested successfully. Now I want to do the dialling funtions through a php script. Read about Event Socket Library(ESL). How to implement the same in freeswitch. Please assist. Thanks, Rex

Re: [Freeswitch-users] ESL Wrapper

2009-02-25 Thread Mathieu Rene
FreeSWITCH will listen on a socket allowing clients to send commands / receive events. ESL is a library to ease the creation of applications connecting to that socket. To install the php ESL module, cd into libs/esl and type make phpmod A sample php file is included in the libs/esl/php

Re: [Freeswitch-users] ESL Wrapper

2009-02-25 Thread Brian West
If he's on 1.0.3 I don't think it has php in it.. /b On Feb 25, 2009, at 1:31 PM, Mathieu Rene wrote: FreeSWITCH will listen on a socket allowing clients to send commands / receive events. ESL is a library to ease the creation of applications connecting to that socket. To install the php

Re: [Freeswitch-users] ESL Wrapper

2009-02-25 Thread Michael Collins
On Wed, Feb 25, 2009 at 11:34 AM, Brian West br...@freeswitch.org wrote: If he's on 1.0.3 I don't think it has php in it.. Can't he do the whole bootstrap process? svn up ./bootstrap.sh ./configure make install And then do Mathieu's suggestion? -MC