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/24 13:43:58 UTC

cvs commit: ws-axis/c/tests/client/stubTest/stubBase InteropTestPortType.cpp InteropTestPortType.h

damitha     2004/06/24 04:43:58

  Modified:    c/tests/client/stubTest/stubBase InteropTestPortType.cpp
                        InteropTestPortType.h
  Log:
  
  
  Revision  Changes    Path
  1.4       +2 -5      ws-axis/c/tests/client/stubTest/stubBase/InteropTestPortType.cpp
  
  Index: InteropTestPortType.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/client/stubTest/stubBase/InteropTestPortType.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- InteropTestPortType.cpp	23 Jun 2004 09:56:33 -0000	1.3
  +++ InteropTestPortType.cpp	24 Jun 2004 11:43:58 -0000	1.4
  @@ -69,15 +69,12 @@
                           cFaultactor = m_pCall->getElementAsString("faultactor", 0);
                      
                                     cFaultdetail = m_pCall->getElementAsString("faultdetail", 0);
  -                                  throw AxisException(cFaultdetail);
  +                                  throw AxisGenException(cFaultdetail);
                         
                   }
                   else throw;
           }
  -        catch(...)
  -        {
  -            throw;
  -        }     
  +             
   	m_pCall->unInitialize();
   	return Ret;
   }
  
  
  
  1.3       +1 -0      ws-axis/c/tests/client/stubTest/stubBase/InteropTestPortType.h
  
  Index: InteropTestPortType.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/client/stubTest/stubBase/InteropTestPortType.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InteropTestPortType.h	21 Jun 2004 13:14:02 -0000	1.2
  +++ InteropTestPortType.h	24 Jun 2004 11:43:58 -0000	1.3
  @@ -9,6 +9,7 @@
   #include <axis/client/Stub.h>
   #include "SOAPStruct_Array.h"
   #include "SOAPStruct.h"
  +#include <axis/AxisGenException.h>
   
   class InteropTestPortType :public Stub 
   {