Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 17218 invoked from network); 2 Aug 2006 00:02:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Aug 2006 00:02:56 -0000 Received: (qmail 92371 invoked by uid 500); 2 Aug 2006 00:02:54 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 92256 invoked by uid 500); 2 Aug 2006 00:02:54 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 92245 invoked by uid 99); 2 Aug 2006 00:02:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Aug 2006 17:02:54 -0700 X-ASF-Spam-Status: No, hits=-9.3 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,SUBJECT_NOVOWEL X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Aug 2006 17:02:52 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 5CF661A981A; Tue, 1 Aug 2006 17:02:32 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r427805 - in /webservices/axis/trunk/c/src/transport/axis3: HTTPChannel/HTTPChannelInstantiator.cpp HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp HTTPTransportInstantiator.cpp Date: Wed, 02 Aug 2006 00:02:31 -0000 To: axis-cvs@ws.apache.org From: nadiramra@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060802000232.5CF661A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: nadiramra Date: Tue Aug 1 17:02:31 2006 New Revision: 427805 URL: http://svn.apache.org/viewvc?rev=427805&view=rev Log: AXISCPP-921 - WhatAmI returns reference to local store. Modified: webservices/axis/trunk/c/src/transport/axis3/HTTPChannel/HTTPChannelInstantiator.cpp webservices/axis/trunk/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp webservices/axis/trunk/c/src/transport/axis3/HTTPTransportInstantiator.cpp Modified: webservices/axis/trunk/c/src/transport/axis3/HTTPChannel/HTTPChannelInstantiator.cpp URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/transport/axis3/HTTPChannel/HTTPChannelInstantiator.cpp?rev=427805&r1=427804&r2=427805&view=diff ============================================================================== --- webservices/axis/trunk/c/src/transport/axis3/HTTPChannel/HTTPChannelInstantiator.cpp (original) +++ webservices/axis/trunk/c/src/transport/axis3/HTTPChannel/HTTPChannelInstantiator.cpp Tue Aug 1 17:02:31 2006 @@ -83,28 +83,4 @@ { // Do uninit actions } - - STORAGE_CLASS_INFO const char * WhatAmI() - { - char szInfo[64]; - char szWhatAmI[256]; - const char * pszWhatAmI = szWhatAmI; - - memset( szInfo, 0, sizeof( szInfo)); - memset( szWhatAmI, 0, sizeof( szWhatAmI)); - - strcpy( szWhatAmI, "LibraryName: HTTPChannel\n"); -#ifdef WIN32 - sprintf( szInfo, "Built: %s\n", __TIMESTAMP__); - strcat( szWhatAmI, szInfo); -#endif -#ifdef IPV6 - sprintf( szInfo, "TCPIP: Built with IPV6\n"); -#else - sprintf( szInfo, "TCPIP: Built with IPV4\n"); -#endif - strcat( szWhatAmI, szInfo); - - return pszWhatAmI; - } } Modified: webservices/axis/trunk/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp?rev=427805&r1=427804&r2=427805&view=diff ============================================================================== --- webservices/axis/trunk/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp (original) +++ webservices/axis/trunk/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp Tue Aug 1 17:02:31 2006 @@ -83,29 +83,5 @@ { // Do uninit actions } - - STORAGE_CLASS_INFO const char * WhatAmI() - { - char szInfo[64]; - char szWhatAmI[256]; - const char * pszWhatAmI = szWhatAmI; - - memset( szInfo, 0, sizeof( szInfo)); - memset( szWhatAmI, 0, sizeof( szWhatAmI)); - - strcpy( szWhatAmI, "LibraryName: HTTPSSLChannel (OpenSSL)\n"); -#ifdef WIN32 - sprintf( szInfo, "Built: %s\n", __TIMESTAMP__); - strcat( szWhatAmI, szInfo); -#endif -#ifdef IPV6 - sprintf( szInfo, "TCPIP: Built with IPV6\n"); -#else - sprintf( szInfo, "TCPIP: Built with IPV4\n"); -#endif - strcat( szWhatAmI, szInfo); - - return pszWhatAmI; - } } Modified: webservices/axis/trunk/c/src/transport/axis3/HTTPTransportInstantiator.cpp URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/transport/axis3/HTTPTransportInstantiator.cpp?rev=427805&r1=427804&r2=427805&view=diff ============================================================================== --- webservices/axis/trunk/c/src/transport/axis3/HTTPTransportInstantiator.cpp (original) +++ webservices/axis/trunk/c/src/transport/axis3/HTTPTransportInstantiator.cpp Tue Aug 1 17:02:31 2006 @@ -76,24 +76,6 @@ } - STORAGE_CLASS_INFO const char * WhatAmI() - { - char szInfo[64]; - char szWhatAmI[256]; - const char * pszWhatAmI = szWhatAmI; - - memset( szInfo, 0, sizeof( szInfo)); - memset( szWhatAmI, 0, sizeof( szWhatAmI)); - - strcpy( szWhatAmI, "LibraryName: HTTPTransport\n"); - -#ifdef WIN32 - sprintf( szInfo, "Built: %s\n", __TIMESTAMP__); - strcat( szWhatAmI, szInfo); -#endif - return pszWhatAmI; - } - STORAGE_CLASS_INFO void preloadChannels(char *unsecChannel, char *secChannel) { ChannelFactory::preloadChannels(unsecChannel, secChannel); --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org