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 ha...@apache.org on 2005/01/14 10:00:33 UTC

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

hawkeye     2005/01/14 01:00:33

  Modified:    c/build  buildTransport.xml
               c/src/platforms/windows PlatformSpecificWindows.hpp
               c/src/transport/axis2 AxisTransportException.cpp Channel.cpp
  Log:
  Fixed Issues with AIX build
  
  Revision  Changes    Path
  1.9       +1 -0      ws-axis/c/build/buildTransport.xml
  
  Index: buildTransport.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build/buildTransport.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- buildTransport.xml	13 Jan 2005 14:07:06 -0000	1.8
  +++ buildTransport.xml	14 Jan 2005 09:00:32 -0000	1.9
  @@ -41,6 +41,7 @@
                  <fileset dir="${dir.src}">
                     <include name="transport/${transport}/*.cpp"/>
                     <include name="platforms/os400/PlatformSpecificOS400.cpp" if="os400"/>
  +                  <include name="platforms/windows/PlatformSpecificWindows.cpp" if="windows"/>
                  </fileset>
               </cc>
            </then>
  
  
  
  1.11      +1 -1      ws-axis/c/src/platforms/windows/PlatformSpecificWindows.hpp
  
  Index: PlatformSpecificWindows.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/platforms/windows/PlatformSpecificWindows.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- PlatformSpecificWindows.hpp	13 Jan 2005 17:03:05 -0000	1.10
  +++ PlatformSpecificWindows.hpp	14 Jan 2005 09:00:33 -0000	1.11
  @@ -77,7 +77,7 @@
    * and that it returns a long
    * @return long the lsat error message for this thread
    */
  -#define GETLASTERROR() GetLastError();
  +#define GETLASTERROR GetLastError();
   
   /**
    * From the last error number get a sensible std::string representing it
  
  
  
  1.6       +1 -1      ws-axis/c/src/transport/axis2/AxisTransportException.cpp
  
  Index: AxisTransportException.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/AxisTransportException.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- AxisTransportException.cpp	25 Nov 2004 12:41:58 -0000	1.5
  +++ AxisTransportException.cpp	14 Jan 2005 09:00:33 -0000	1.6
  @@ -110,7 +110,7 @@
                   " response message";
               break;
           case SERVER_TRANSPORT_UNKNOWN_HTTP_RESPONSE:
  -            m_sMessage = "AxisTransportException:Unknow HTTP response," \
  +            m_sMessage = "AxisTransportException:Unknown HTTP response," \
                   " cannot process response message";
               break;
           case SERVER_TRANSPORT_UNEXPECTED_STRING:
  
  
  
  1.16      +1 -1      ws-axis/c/src/transport/axis2/Channel.cpp
  
  Index: Channel.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/Channel.cpp,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Channel.cpp	13 Jan 2005 17:03:06 -0000	1.15
  +++ Channel.cpp	14 Jan 2005 09:00:33 -0000	1.16
  @@ -178,7 +178,7 @@
   			// channel and then throw an exception.
   
   			// Before we do anything else get the last error message;
  -			long dw = GETLASTERROR()
  +			long dw = GETLASTERROR
   
   			closeChannel();