SONAME change

2012-11-15 Thread Yehezkel Horowitz
Hi I wonder if there is an easy way to compile libcurl into different SONAME like libmycurl.so? The motivation is to have the regular released library along with my patched library sitting on the same machine and share the same LD_LIBRARY_PATH, this way to allow only my program to use my

Re: Does libcurl supports LDAP connections over SOCKS proxy?

2012-11-15 Thread Anton Malov
On Wed, Nov 14, 2012 at 5:53 PM, Daniel Stenberg dan...@haxx.se wrote: If you build with openldap (lib/openldap.c) instead, it uses ldap_init_fd() and that is supposed to instead work on the given socket instead of trying to create a new one. Tried to set custom socket for LDAP connection

Re: SONAME change

2012-11-15 Thread Daniel Stenberg
On Thu, 15 Nov 2012, Yehezkel Horowitz wrote: I wonder if there is an easy way to compile libcurl into different SONAME like libmycurl.so? Sure. If you check the lib/Makefile you can see that VERSIONINFO is being set (to an argument that is passed along to libtool). You can set your own

RE: SONAME change

2012-11-15 Thread Yehezkel Horowitz
First - thanks for your quick reply. I wonder if there is an easy way to compile libcurl into different SONAME like libmycurl.so? Sure. If you check the lib/Makefile you can see that VERSIONINFO is being set (to an argument that is passed along to libtool). You can set your own value either

RE: SONAME change

2012-11-15 Thread Daniel Stenberg
On Thu, 15 Nov 2012, Yehezkel Horowitz wrote: This is what I see in lib/Makefile (by grep VERSIONINFO lib/Makefile) VERSIONINFO = -version-info 6:0:2 #VERSIONINFO = -version-info 7:0:2 libcurl_la_LDFLAGS = $(UNDEF) $(VERSIONINFO) $(MIMPURE) $(VERSIONED_SYMBOLS) $(LIBCURL_LIBS) How this is

Can cURL send multiple HTTP Requests?

2012-11-15 Thread Fuller, Rudyard
Hello, We are setting up a test regression harness that involved reading XML input requests from a database and firing each request record into a WSDL. Can cURL read through database records, send each XML request to a WSDL, receive the output XML response, store back into a database table?