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 di...@apache.org on 2006/02/07 16:04:32 UTC

svn commit: r375621 - /webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.cpp

Author: dicka
Date: Tue Feb  7 07:04:31 2006
New Revision: 375621

URL: http://svn.apache.org/viewcvs?rev=375621&view=rev
Log:
Correct server version for Simple Axis Server.

Modified:
    webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.cpp

Modified: webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.cpp?rev=375621&r1=375620&r2=375621&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.cpp (original)
+++ webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.cpp Tue Feb  7 07:04:31 2006
@@ -106,7 +106,7 @@
 	sprintf (strtonum, "%d", contentLength);
 	setTransportProperty (SOAP_MESSAGE_LENGTH, strtonum);
 	m_strHTTPHeaders = std::string ("HTTP/1.1 200 OK\r\n") +
-	    std::string ("Server: Apache Axis C++/1.3\r\n") +
+	    std::string ("Server: Apache Axis C++/1.6\r\n") +
 	    std::string ("Connection: close\r\n") +
 	    m_strHTTPHeaders + std::string ("Content-Type: text/xml\r\n\r\n");