Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 31986 invoked from network); 9 Oct 2007 06:37:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Oct 2007 06:37:59 -0000 Received: (qmail 99337 invoked by uid 500); 9 Oct 2007 06:37:42 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 99281 invoked by uid 500); 9 Oct 2007 06:37:42 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 99270 invoked by uid 99); 9 Oct 2007 06:37:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2007 23:37:42 -0700 X-ASF-Spam-Status: No, hits=1.0 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [61.95.162.82] (HELO kecgate06.infosys.com) (61.95.162.82) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Oct 2007 06:37:44 +0000 Received: from INDHUBBHS02.ad.infosys.com ([192.168.200.82]) by kecgate06.infosys.com with InterScan Message Security Suite; Tue, 09 Oct 2007 11:35:35 +0530 Received: from blrkechub03.ad.infosys.com ([10.66.236.43]) by INDHUBBHS02.ad.infosys.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Oct 2007 11:35:03 +0530 Received: from BLRKECMBX04.ad.infosys.com ([10.66.236.24]) by blrkechub03.ad.infosys.com ([10.66.236.43]) with mapi; Tue, 9 Oct 2007 11:35:03 +0530 From: Renu Tiwari To: "'dev@httpd.apache.org'" Date: Tue, 9 Oct 2007 11:35:03 +0530 Subject: Error from DSOLoadLibrary in Apache2.0.61(64 bit) on AIX 5.3(64 bit) Thread-Topic: Error from DSOLoadLibrary in Apache2.0.61(64 bit) on AIX 5.3(64 bit) Thread-Index: AcgKOlSSNlyWELsWSIqiMwgWGX7WGA== Message-ID: <9427A358BEEECA4D8267C8C5FD8322A605F114F490@BLRKECMBX04.ad.infosys.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: multipart/alternative; boundary="_000_9427A358BEEECA4D8267C8C5FD8322A605F114F490BLRKECMBX04ad_" MIME-Version: 1.0 X-OriginalArrivalTime: 09 Oct 2007 06:05:03.0632 (UTC) FILETIME=[5558C100:01C80A3A] X-Virus-Checked: Checked by ClamAV on apache.org --_000_9427A358BEEECA4D8267C8C5FD8322A605F114F490BLRKECMBX04ad_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi All, We need to support our application (thirdparty) using ASF Apache= 2.0.61(64-bit) on AIX 5.3(64-bit). Here our application is also running in= 64-bit mode. We are facing an issue in dynamically loading the thirdparty module to= Apache2.0.61 server. Error shown in error_logs of Apache server is "Error from DSOLoadLibrary - Not enough space". We were able to load the library from a sample program, here apache is not= in the picture. Sample program:- void* SmDSOLoadLibrary ( const char *pszDSOPath, char **ppszErrorBuf ) { void* pHandle =3D NULL; pHandle =3D dlopen( ./test.so, RTLD_LAZY ); if ( !pHandle ) { printf(" I am in"); return pHandle; } return pHandle; } Tried with options "ulimit -d unlimited" and also tried to increase the= address space by using option LDR_CTRL=3DMAXDATA=3D0x80000000 But still we are facing the same issue and getting the same error as "Error= from DSOLoadLibrary - Not enough space". Also we tried to load the same thirdparty module to ASF Apache2.0.61 (64= bit) on AIX 5.2(64 bit). There Apache is able to load the module and the= process of Apache and our application are working fine. The above issue is on AIX 5.3(64 bit) only. Any suggestion regarding this will be appreciated. Thanks, RT **************** CAUTION - Disclaimer ***************** This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended= solely for the use of the addressee(s). If you are not the intended= recipient, please notify the sender by e-mail and delete the original= message. Further, you are not to copy, disclose, or distribute this e-mail= or its contents to any other person and any such actions are unlawful.= This e-mail may contain viruses. Infosys has taken every reasonable= precaution to minimize this risk, but is not liable for any damage you may= sustain as a result of any virus in this e-mail. You should carry out your= own virus checks before opening the e-mail or attachment. Infosys reserves= the right to monitor and review the content of all messages sent to or= from this e-mail address. Messages sent to or from this e-mail address may= be stored on the Infosys e-mail system. ***INFOSYS******** End of Disclaimer ********INFOSYS*** --_000_9427A358BEEECA4D8267C8C5FD8322A605F114F490BLRKECMBX04ad_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Hi All,

 

We need to support our application (thirdparty) using ASF Apache 2.0.61(64-bit) on AIX 5.3(64-bit). Here our application is also running in 64-bit mode.

 

We are facing an issue in dynamically loading the thirdparty module= to Apache2.0.61 server. Error shown in error_logs of Apache server is=

“Error from= DSOLoadLibrary - Not enough space”.

 <= /p>

We were able to load the library from a sample program, here apache= is not in the picture.

 

Sample program:-

 

void* SmDSOLoadLibrary ( const char *pszDSOPath, char= **ppszErrorBuf )

{

        void* pHandle =3D= NULL;

        pHandle =3D dlopen(= ./test.so, RTLD_LAZY );

 

        if ( !pHandle= )

       = {

           &= nbsp;    printf(" I am in");

           &= nbsp;    return pHandle;

       = }

 

        return= pHandle;

}

 

Tried with options “ulimit –d unlimited” and also tried to increase the address space by using option LDR_CTRL=3DMAXDATA= =3D0x80000000

But still we are facing the same issue and getting the same error= as “Error from DSOLoadLibrary - Not enough= space”.

 

Also we tried to load the same thirdparty module to ASF= Apache2.0.61 (64 bit) on AIX 5.2(64 bit). There Apache is able to load the module and= the process of Apache and our application are working= fine.

 

The above issue is on AIX 5.3(64 bit)= only.

 

Any suggestion regarding this will be= appreciated.

 

Thanks,

RT

 

 

 

 

****************= CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended= solely for the use of the addressee(s). If you are not the intended= recipient, please notify the sender by e-mail and delete the original= message. Further, you are not to copy, disclose, or distribute this e-mail= or its contents to any other person and any such actions are unlawful.= This e-mail may contain viruses. Infosys has taken every reasonable= precaution to minimize this risk, but is not liable for any damage you may= sustain as a result of any virus in this e-mail. You should carry out your= own virus checks before opening the e-mail or attachment. Infosys reserves= the right to monitor and review the content of all messages sent to or= from this e-mail address. Messages sent to or from this e-mail address may= be stored on the Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***
--_000_9427A358BEEECA4D8267C8C5FD8322A605F114F490BLRKECMBX04ad_--