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/06/21 14:35:04 UTC

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

damitha     2004/06/21 05:35:04

  Modified:    c/src/transport/axis AxisTransportException.cpp Channel.cpp
  Log:
  
  
  Revision  Changes    Path
  1.5       +2 -1      ws-axis/c/src/transport/axis/AxisTransportException.cpp
  
  Index: AxisTransportException.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis/AxisTransportException.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AxisTransportException.cpp	21 Jun 2004 12:08:51 -0000	1.4
  +++ AxisTransportException.cpp	21 Jun 2004 12:35:03 -0000	1.5
  @@ -107,7 +107,8 @@
               m_sMessage = "Unknow HTTP response, cannot process response message";
               break;
           case SERVER_TRANSPORT_UNEXPECTED_STRING:
  -            m_sMessage = "Unexpected string";
  +            m_sMessage = "Unexpected string received. Most probably server " \
  +                "returned an empty stream";
               break;
           case SERVER_TRANSPORT_CHANNEL_INIT_ERROR:
               m_sMessage = "Cannot initialize a channel to the remote end";
  
  
  
  1.19      +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.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- Channel.cpp	13 Jun 2004 11:27:00 -0000	1.18
  +++ Channel.cpp	21 Jun 2004 12:35:03 -0000	1.19
  @@ -276,7 +276,7 @@
   	/* printf("buf:%s\n", buf); */
       }
       else
  -	printf ("execution break\n");
  +	;//printf ("execution break\n");
       
       return *this;
   }