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 da...@apache.org on 2004/04/01 16:38:07 UTC

cvs commit: ws-axis/c/src/transport/axis AxisTransport.cpp Channel.cpp

damitha     2004/04/01 06:38:07

  Modified:    c/src/transport/axis AxisTransport.cpp Channel.cpp
  Log:
  I just removed  unneccsary comments I made in above files.
  
  Revision  Changes    Path
  1.21      +0 -3      ws-axis/c/src/transport/axis/AxisTransport.cpp
  
  Index: AxisTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis/AxisTransport.cpp,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- AxisTransport.cpp	31 Mar 2004 13:51:15 -0000	1.20
  +++ AxisTransport.cpp	1 Apr 2004 14:38:07 -0000	1.21
  @@ -211,17 +211,14 @@
   AXIS_TRANSPORT_STATUS AxisTransport::Get_bytes(const char** res, int* retsize, const void* pSStream)
   {
       	const char* strReceive =  m_pReceiver->Recv();
  -	printf("strReceive:%s\n", strReceive);
   	if (strReceive)
   	{
  -		printf("came\n");
   		*res = strReceive;
   		*retsize = strlen(strReceive);
   		return TRANSPORT_IN_PROGRESS;
   	}
   	else
   	{
  -		printf("came2\n");
   		*res = NULL;
   		*retsize = 0;
   		return TRANSPORT_FINISHED;
  
  
  
  1.12      +1 -1      ws-axis/c/src/transport/axis/Channel.cpp
  
  Index: Channel.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis/Channel.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Channel.cpp	31 Mar 2004 13:51:15 -0000	1.11
  +++ Channel.cpp	1 Apr 2004 14:38:07 -0000	1.12
  @@ -260,7 +260,7 @@
   	}
           if(nByteRecv)
           {
  -		printf("nByteRecv:%d\n", nByteRecv);
  +		//printf("nByteRecv:%d\n", nByteRecv);
                   buf[nByteRecv] = '\0';  // got a part of the message, so add " \		"to form
               	msg = buf;
               	//printf("buf:%s\n", buf);