sanjaya     2003/07/23 06:56:00

  Modified:    c/src/soap SoapSerializer.cpp
  Log:
  modified to support the new transport module api
  
  Revision  Changes    Path
  1.8       +5 -1      xml-axis/c/src/soap/SoapSerializer.cpp
  
  Index: SoapSerializer.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/soap/SoapSerializer.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SoapSerializer.cpp        23 Jul 2003 10:04:46 -0000      1.7
  +++ SoapSerializer.cpp        23 Jul 2003 13:56:00 -0000      1.8
  @@ -24,6 +24,8 @@
    *       "This product includes software developed by the
    *        Apache Software Foundation (http://www.apache.org/)."
    *    Alternately, this acknowledgment may appear in the software itself,
  +
  +
    *    if and wherever such third-party acknowledgments normally appear.
    *
    * 4. The names "SOAP" and "Apache Software Foundation" must
  @@ -68,6 +70,7 @@
   #include "SoapEnvelope.h"
   #include "SoapSerializer.h"
   #include "../common/GDefine.h"
  +#include "../common/Packet.h"
   #include "../common/ArrayBean.h"
   #include "../common/BasicTypeSerializer.h"
   
  @@ -235,7 +238,8 @@
   {
        //cout<<"++++++++++++++++"<<"flushed"<<endl;
        //cout<<"++++++++++++++++"<<m_cSerializedBuffer<<endl;
  -     sendSoapResponse(m_cSerializedBuffer);
  +     //sendSoapResponse(m_cSerializedBuffer);
  +     send_response_bytes(m_cSerializedBuffer);
        m_cSerializedBuffer[0]= '\0';
        m_iCurrentSerBufferSize=0;
   
  
  
  

Reply via email to