You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by na...@apache.org on 2006/08/02 02:02:31 UTC

svn commit: r427805 - in /webservices/axis/trunk/c/src/transport/axis3: HTTPChannel/HTTPChannelInstantiator.cpp HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp HTTPTransportInstantiator.cpp

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