[Freeswitch-users] problem with mod_xml_odbc

2009-11-14 Thread Woody Dickson
Hi,

I am having problem trying to use mod_xml_odbc using freeswitch-1.0.5pre.

Here is the error I am getting:

2009-11-15 00:17:23.571293 [INFO] mod_xml_odbc.c:647 XML ODBC module
loading...
2009-11-15 00:17:23.571354 [NOTICE] mod_xml_odbc.c:563 Binding XML Search
Function [directory]
2009-11-15 00:17:23.572299 [ERR] switch_odbc.c:188 STATE: IM002 CODE 0
ERROR: [unixODBC][Driver Manager]Data source name not found, and no default
driver specified

2009-11-15 00:17:23.572361 [CRIT] mod_xml_odbc.c:617 Cannot Open ODBC
Database!
2009-11-15 00:17:23.572397 [ERR] mod_xml_odbc.c:650 Unable to load xml_odbc
config file
2009-11-15 00:17:23.572424 [CRIT] switch_loadable_module.c:871 Error Loading
module /usr/local/freeswitch/mod/mod_xml_odbc.so
**Module load routine returned an error**


In my config, I have:


  settings
param name=binding value=directory/
param name=odbc-dsn value=myodbc:root:123456/
param name=debug value=true/
param name=keep-files-around value=true/
  /settings


[r...@localhost autoload_configs]# isql myodbc -v
+---+
| Connected!|
|   |
| sql-statement |
| help [tablename]  |
| quit  |
|   |
+---+
SQL



How can I fix this problem?

thanks,
woody
___
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


[Freeswitch-users] FreeSWITCH Now Supports Broadvoice BV16, BV32 Voice Codecs

2009-11-14 Thread Dome Charoenyost
http://freeswitch.org/node/217

Very fast develop :)
one reason why i love FS. another is good performance

Dome C.

___
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


Re: [Freeswitch-users] problem with mod_xml_odbc

2009-11-14 Thread Brian West
Try using isql to connect to the db...

/b

On Nov 14, 2009, at 2:31 AM, Woody Dickson wrote:

 Hi,

 I am having problem trying to use mod_xml_odbc using  
 freeswitch-1.0.5pre.


___
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


Re: [Freeswitch-users] FreeSWITCH Now Supports Broadvoice BV16, BV32 Voice Codecs

2009-11-14 Thread Brian West
I'm working out one final detail with Broadcom about on wire  
bitpacking so you might not be compatible with any device that uses  
these codecs just yet due to confusion in the RFC and the API.  Seems  
the G.192 bitpacking might have been used on the wire for the devices  
adding un-needed overhead and causing it to not officially be  
compatible with the RFC.  FreeSWITCH can talk to FreeSWITCH without a  
problem.

/b

On Nov 14, 2009, at 3:42 AM, Dome Charoenyost wrote:

 http://freeswitch.org/node/217

 Very fast develop :)
 one reason why i love FS. another is good performance

 Dome C.

 ___
 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


___
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


Re: [Freeswitch-users] Large number of destinations

2009-11-14 Thread Robin Vleij
On 11/13/09 6:58 PM, Eliot Gable wrote:

Hi Eliot!

 Performance is not an issue. I clocked 300 calls per second on such a
 setup using a Dell R710 with two XEON X5570s and 32 GB RAM as the
 FreeSWITCH server and a Dell 2950 4-core system with 8 GB RAM as the
 app server. The app server was at 15% - 20% idle at that rate and the

Haha, that should do the trick for me. Sounds realy good. I still prefer
to use the internal ENUM system for all lookups, but if that's not
possible then the mod_xml_curl method is the one for me I think. That
takes all routing complexity away from the FS system.

 meant that I could only pull 160 calls per second, even though the app
 server was 55% - 60% idle at that rate, because the ODBC call took
 1/160th of a second to complete and all the requests were serialized.

OK, that's a problem. On the other hand 160 cps is still very good. If I
keep an eye on where I use the limit app, it'll be OK.

 are storing / querying your data from your database system. Actually,
 I suppose you could just be a bad programmer and end up making it
 exponential, but I'm assuming you know how to write code and design
 your database in a way that avoids that.

There's people in my department that know a few things about that, so I
can always let my design get approved by them. :)

 I have been considering writing a hash cache for the XML dialplan so
 that lookups can become constant time, but I have no idea when or if I
 will find the time to do that. :)

I know the feeling, working on three things at the same time. But it
sounds really good all of this. Have to start thinking about the app
server design, see how we can do that. It's always a balance, since in
the beginning it will be a very small nr of routes. Having the xml_curl
setup is a lot of overkill there. But I also know that when connected
systems increases there's no time anymore to do it properly, so it's
probably best to build the rocketship right from the start. :)

/robin

___
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


[Freeswitch-users] Question about channel creation messages in logfile

2009-11-14 Thread Paul Thirumalai
Hello All
I am a freeswitch newbie. I have managed to get internal phones setup on
different computers at home, using X-lite
My issue is with making outbound calls. I'm trying to use voicepulse for
that. My Freeswitch server IP is 11.111.123.23

My issue is as follows. I used extension 1000 (X-Lite softphone) to make an
out going call my cell phone (555-123-1234)
From the freeswitch.log logfile I see that the channel for 1000 goes from
CS_NEW- CS_INIT-CS_ROUTING . At this point it starts going through the
dial plans and finds the correct dialplan. According to the dialplan the
outgoing call needs to go to sofia/gateway/voicepulse/5551231234 and I see
the following lines in the logfile
EXECUTE 
sofia/internal/1...@11.111.123.23hash(insert/11.111.123.23-last_dial/global/115be3f6-d01c-11de-8360-976b377ef920)
EXECUTE 
sofia/internal/1...@11.111.123.23bridge(sofia/gateway/voicepulse/5551231234)
*

*This message makes sense to me and appears to be right.  Freeswitch is
trying to bridge a call from extension # 1000 to outbound number 5551231234

Now the very next line I see freeswitch attempting to create a channel to
the outbound number.

2009-11-13 01:16:23.654519 [NOTICE] switch_channel.c:602 New Channel
sofia/external/5551231234 [115c7c76-d01c-11de-8360-976b377ef920]

Please correct me if I'm mistaken, but isnt freeswitch supposed to create a
channel for sofia/gateway/voicepulse/5551231234 and not
sjofia/external/5551231235


In any case the channel to sofia/external/5551231234 changes state from
CS_NEW-CS_INIT-CS_ROUTING-CS_CONSUME_MEDIA .  At this point the
freeswitch gets an Remote SDP, I am assuming from voicepulse.

In the end I see message which reads
2009-11-13 01:16:30.880417 [DEBUG] mod_sofia.c:306 sofia/external/5035440933
Overriding SIP cause 503 with 500 from the other leg

Can someone please tell me what this error means. SIP error code 500 is what
I get in X-Lite also.

Also could someone please explain what Pre-Answer is.

Thanks
Paul
___
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


[Freeswitch-users] Registration Error 408

2009-11-14 Thread Samuel Abekah-Mensah
Hello

Please pardon me if the solution to this is somewhere already that I 
have been unable to locate. I have just got a straight out-of-the-box 
build of FS. According to the wiki, I should be able to test using user 
IDs 1001 and 1002. However, I am get the above error. If  I, however,  
un-tick register with domain  I do net get the error but does not 
communicate either. Is there a conf that I should have done ?

Thanks in advance.

Abeka

___
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


[Freeswitch-users] Registration Error - 408 timeout

2009-11-14 Thread Samuel Abekah-Mensah
Hello

Please pardon me if the solution to this is somewhere already that I 
have been unable to locate. I have just got a straight out-of-the-box 
build of FS. According to the wiki, I should be able to test using user 
IDs 1001 and 1002. However, I am get the above error. If  I, however,  
un-tick register with domain  I do net get the error but does not 
communicate either. Is there a conf that I should have done ?

I am using X-lite3

Thanks in advance.

Abeka

___
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


Re: [Freeswitch-users] Question about channel creation messages in logfile

2009-11-14 Thread Brian West

Paul,
	The channel name is useless it means absolutely NOTHING in  
FreeSWITCH... what matters in FreeSWITCH is the uuid.  You can even  
set the channel names to what ever you like with the include app in  
dptools.


set_name,Name the channel,name,mod_dptools

So to answer your question.  No it shouldn't have the gateway name in  
the channel name... As for the 500 error your provider responded 500  
Internal Server Error.


Pre-Answer is usually early media.

/b

On Nov 14, 2009, at 7:11 PM, Paul Thirumalai wrote:


Hello All
I am a freeswitch newbie. I have managed to get internal phones  
setup on different computers at home, using X-lite
My issue is with making outbound calls. I'm trying to use voicepulse  
for that. My Freeswitch server IP is 11.111.123.23


My issue is as follows. I used extension 1000 (X-Lite softphone) to  
make an out going call my cell phone (555-123-1234)
From the freeswitch.log logfile I see that the channel for 1000 goes  
from CS_NEW- CS_INIT-CS_ROUTING . At this point it starts going  
through the dial plans and finds the correct dialplan. According to  
the dialplan the outgoing call needs to go to sofia/gateway/ 
voicepulse/5551231234 and I see the following lines in the logfile
EXECUTE sofia/internal/1...@11.111.123.23 hash(insert/11.111.123.23- 
last_dial/global/115be3f6-d01c-11de-8360-976b377ef920)
EXECUTE sofia/internal/1...@11.111.123.23 bridge(sofia/gateway/ 
voicepulse/5551231234)



This message makes sense to me and appears to be right.  Freeswitch  
is trying to bridge a call from extension # 1000 to outbound number  
5551231234


Now the very next line I see freeswitch attempting to create a  
channel to the outbound number.


2009-11-13 01:16:23.654519 [NOTICE] switch_channel.c:602 New Channel  
sofia/external/5551231234 [115c7c76-d01c-11de-8360-976b377ef920]


Please correct me if I'm mistaken, but isnt freeswitch supposed to  
create a channel for sofia/gateway/voicepulse/5551231234 and not  
sjofia/external/5551231235



In any case the channel to sofia/external/5551231234 changes state  
from CS_NEW-CS_INIT-CS_ROUTING-CS_CONSUME_MEDIA .  At this point  
the freeswitch gets an Remote SDP, I am assuming from voicepulse.


In the end I see message which reads
2009-11-13 01:16:30.880417 [DEBUG] mod_sofia.c:306 sofia/external/ 
5035440933 Overriding SIP cause 503 with 500 from the other leg


Can someone please tell me what this error means. SIP error code 500  
is what I get in X-Lite also.


Also could someone please explain what Pre-Answer is.

Thanks
Paul

___
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


___
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


Re: [Freeswitch-users] Registration Error 408

2009-11-14 Thread Brian West
I'm going to venture to guess you're doing this all on the same machine?

/b

On Nov 14, 2009, at 7:11 PM, Samuel Abekah-Mensah wrote:

 Hello

 Please pardon me if the solution to this is somewhere already that I
 have been unable to locate. I have just got a straight out-of-the-box
 build of FS. According to the wiki, I should be able to test using  
 user
 IDs 1001 and 1002. However, I am get the above error. If  I, however,
 un-tick register with domain  I do net get the error but does not
 communicate either. Is there a conf that I should have done ?

 Thanks in advance.

 Abeka

 ___
 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


___
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


Re: [Freeswitch-users] (no subject)

2009-11-14 Thread Paul Thirumalai
Hi Brian,
Thanks for your clarification.  By uuid do you mean uuid of the channel?

Can you tell me how I could determine the uuid of the channel

Thanks
Paul

On Sat, Nov 14, 2009 at 6:36 PM, Paul Thirumalai
paul.thiruma...@gmail.comwrote:

 Paul,
   The channel name is useless it means absolutely NOTHING in
 FreeSWITCH... what matters in FreeSWITCH is the uuid.  You can even
 set the channel names to what ever you like with the include app in

 dptools.

 set_name,Name the channel,name,mod_dptools

 So to answer your question.  No it shouldn't have the gateway name in
 the channel name... As for the 500 error your provider responded 500

 Internal Server Error.

 Pre-Answer is usually early media.

 /b

 On Nov 14, 2009, at 7:11 PM, Paul Thirumalai wrote:

 * Hello All
 ** I am a freeswitch newbie. I have managed to get internal phones
 ** setup on different computers at home, using X-lite
 ** My issue is with making outbound calls. I'm trying to use voicepulse
 ** for that. My Freeswitch server IP is 11.111.123.23
 **
 ** My issue is as follows. I used extension 1000 (X-Lite softphone) to
 ** make an out going call my cell phone (555-123-1234)
 ** From the freeswitch.log logfile I see that the channel for 1000 goes
 ** from CS_NEW- CS_INIT-CS_ROUTING . At this point it starts going
 ** through the dial plans and finds the correct dialplan. According to
 ** the dialplan the outgoing call needs to go to sofia/gateway/
 ** voicepulse/5551231234 and I see the following lines in the logfile
 ** EXECUTE sofia/internal/1000 at 11.111.123.23 
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users 
 hash(insert/11.111.123.23-
 ** last_dial/global/115be3f6-d01c-11de-8360-976b377ef920)
 ** EXECUTE sofia/internal/1000 at 11.111.123.23 
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users 
 bridge(sofia/gateway/
 ** voicepulse/5551231234)
 **
 **
 ** This message makes sense to me and appears to be right.  Freeswitch
 ** is trying to bridge a call from extension # 1000 to outbound number
 ** 5551231234
 **
 ** Now the very next line I see freeswitch attempting to create a
 ** channel to the outbound number.
 **
 ** 2009-11-13 01:16:23.654519 [NOTICE] switch_channel.c:602 New Channel
 ** sofia/external/5551231234 [115c7c76-d01c-11de-8360-976b377ef920]
 **
 ** Please correct me if I'm mistaken, but isnt freeswitch supposed to
 ** create a channel for sofia/gateway/voicepulse/5551231234 and not
 ** sjofia/external/5551231235
 **
 **
 ** In any case the channel to sofia/external/5551231234 changes state
 ** from CS_NEW-CS_INIT-CS_ROUTING-CS_CONSUME_MEDIA .  At this point
 ** the freeswitch gets an Remote SDP, I am assuming from voicepulse.
 **
 ** In the end I see message which reads
 ** 2009-11-13 01:16:30.880417 [DEBUG] mod_sofia.c:306 sofia/external/
 ** 5035440933 Overriding SIP cause 503 with 500 from the other leg
 **
 ** Can someone please tell me what this error means. SIP error code 500
 ** is what I get in X-Lite also.
 **
 ** Also could someone please explain what Pre-Answer is.
 **
 ** Thanks
 ** Paul
 **
 ** ___
 ** FreeSWITCH-users mailing list
 ** FreeSWITCH-users at lists.freeswitch.org 
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 ** http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 ** UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 ** users
 ** http://www.freeswitch.org
 *


___
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


[Freeswitch-users] fs_cli Error

2009-11-14 Thread tina
I'm trying to setup fs_cli on a server that is not running the FreeSWITCH
server, and I keep getting the following error:

error while loading shared libraries: libedit.so.0: cannot open shared
object file: No such file or directory

When I go to one of my FreeSWITCH servers, where fs_cli is working fine, I
cannot find the existence of libedit.so.0 anywhere on the server, so I'm
not sure what I'm missing...

Any thoughts?

- Tina




___
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


Re: [Freeswitch-users] fs_cli Error

2009-11-14 Thread Jason White
t...@a2unlimited.com t...@a2unlimited.com wrote:
 I'm trying to setup fs_cli on a server that is not running the FreeSWITCH
 server, and I keep getting the following error:
 
 error while loading shared libraries: libedit.so.0: cannot open shared
 object file: No such file or directory

For me, under Debian, it's in the libedit2 package. However, fs_cli isn't
looking for it, at least not directly.


___
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


Re: [Freeswitch-users] fs_cli Error

2009-11-14 Thread William Suffill
Libedit shared library isn't on the box and fs_cli needs it. It's
included as part of the FreeSWITCH build process so any boxes you have
FreeSWITCH installed on would have it.

You should be able to install libedit on the box you want to use
fs_cli on to fix this.

-- W

___
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


Re: [Freeswitch-users] (no subject)

2009-11-14 Thread Brian West

show channels

its the first item listed.

/b

On Nov 14, 2009, at 8:38 PM, Paul Thirumalai wrote:


Hi Brian,
Thanks for your clarification.  By uuid do you mean uuid of the  
channel?


Can you tell me how I could determine the uuid of the channel

Thanks
Paul

On Sat, Nov 14, 2009 at 6:36 PM, Paul Thirumalai paul.thiruma...@gmail.com 
 wrote:

Paul,
The channel name is useless it means absolutely NOTHING in
FreeSWITCH... what matters in FreeSWITCH is the uuid.  You can even

set the channel names to what ever you like with the include app in

dptools.

set_name,Name the channel,name,mod_dptools

So to answer your question.  No it shouldn't have the gateway name in
the channel name... As for the 500 error your provider responded 500


Internal Server Error.

Pre-Answer is usually early media.

/b

On Nov 14, 2009, at 7:11 PM, Paul Thirumalai wrote:

 Hello All
 I am a freeswitch newbie. I have managed to get internal phones


 setup on different computers at home, using X-lite
 My issue is with making outbound calls. I'm trying to use voicepulse
 for that. My Freeswitch server IP is 11.111.123.23



 My issue is as follows. I used extension 1000 (X-Lite softphone) to
 make an out going call my cell phone (555-123-1234)
 From the freeswitch.log logfile I see that the channel for 1000 goes


 from CS_NEW- CS_INIT-CS_ROUTING . At this point it starts going
 through the dial plans and finds the correct dialplan. According to
 the dialplan the outgoing call needs to go to sofia/gateway/


 voicepulse/5551231234 and I see the following lines in the logfile
 EXECUTE sofia/internal/1000 at 11.111.123.23 hash(insert/ 
11.111.123.23-



 last_dial/global/115be3f6-d01c-11de-8360-976b377ef920)
 EXECUTE sofia/internal/1000 at 11.111.123.23 bridge(sofia/gateway/


 voicepulse/5551231234)


 This message makes sense to me and appears to be right.  Freeswitch
 is trying to bridge a call from extension # 1000 to outbound number


 5551231234

 Now the very next line I see freeswitch attempting to create a
 channel to the outbound number.

 2009-11-13 01:16:23.654519 [NOTICE] switch_channel.c:602 New Channel


 sofia/external/5551231234 [115c7c76-d01c-11de-8360-976b377ef920]

 Please correct me if I'm mistaken, but isnt freeswitch supposed to
 create a channel for sofia/gateway/voicepulse/5551231234 and not


 sjofia/external/5551231235


 In any case the channel to sofia/external/5551231234 changes state
 from CS_NEW-CS_INIT-CS_ROUTING-CS_CONSUME_MEDIA .  At this point


 the freeswitch gets an Remote SDP, I am assuming from voicepulse.

 In the end I see message which reads
 2009-11-13 01:16:30.880417 [DEBUG] mod_sofia.c:306 sofia/external/


 5035440933 Overriding SIP cause 503 with 500 from the other leg

 Can someone please tell me what this error means. SIP error code 500
 is what I get in X-Lite also.



 Also could someone please explain what Pre-Answer is.

 Thanks
 Paul

 ___
 FreeSWITCH-users mailing list


 FreeSWITCH-users at lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users


 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 users
 http://www.freeswitch.org



___
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


___
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


Re: [Freeswitch-users] fs_cli Error

2009-11-14 Thread Anthony Minessale
from build root:

cd libs/esl
make

the resulting fs_cli that is in that dir one you type make should be more
portable than the one created by the top level make in FS

On Sat, Nov 14, 2009 at 8:41 PM, t...@a2unlimited.com wrote:

 I'm trying to setup fs_cli on a server that is not running the FreeSWITCH
 server, and I keep getting the following error:

 error while loading shared libraries: libedit.so.0: cannot open shared
 object file: No such file or directory

 When I go to one of my FreeSWITCH servers, where fs_cli is working fine, I
 cannot find the existence of libedit.so.0 anywhere on the server, so I'm
 not sure what I'm missing...

 Any thoughts?

 - Tina




 ___
 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




-- 
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire

AIM: anthm
MSN:anthony_miness...@hotmail.com msn%3aanthony_miness...@hotmail.com
GTALK/JABBER/PAYPAL:anthony.miness...@gmail.compaypal%3aanthony.miness...@gmail.com
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:8...@conference.freeswitch.org sip%3a...@conference.freeswitch.org
iax:gu...@conference.freeswitch.org/888
googletalk:conf+...@conference.freeswitch.orggoogletalk%3aconf%2b...@conference.freeswitch.org
pstn:213-799-1400
___
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