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 2003/07/17 09:00:23 UTC

cvs commit: xml-axis/c/src/server/handlers/global/testhandler1 TestGlobal.cpp TestGlobal.h

damitha     2003/07/17 00:00:23

  Modified:    c/src/server/handlers/global/testhandler1 TestGlobal.cpp
                        TestGlobal.h
  Log:
  
  
  Revision  Changes    Path
  1.2       +2 -2      xml-axis/c/src/server/handlers/global/testhandler1/TestGlobal.cpp
  
  Index: TestGlobal.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/handlers/global/testhandler1/TestGlobal.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestGlobal.cpp	7 Jul 2003 13:30:06 -0000	1.1
  +++ TestGlobal.cpp	17 Jul 2003 07:00:22 -0000	1.2
  @@ -26,7 +26,7 @@
   
   }
   // Implementation of BasicHandler interface.
  -int TestGlobal::Invoke(MessageData* md)
  +int TestGlobal::Invoke(IMessageData* md)
   {
     try
     {
  @@ -40,7 +40,7 @@
   	}
   }
   
  -void TestGlobal::OnFault(MessageData* mc)
  +void TestGlobal::OnFault(IMessageData* mc)
   {
   
   }
  
  
  
  1.2       +3 -3      xml-axis/c/src/server/handlers/global/testhandler1/TestGlobal.h
  
  Index: TestGlobal.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/handlers/global/testhandler1/TestGlobal.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestGlobal.h	7 Jul 2003 13:30:06 -0000	1.1
  +++ TestGlobal.h	17 Jul 2003 07:00:23 -0000	1.2
  @@ -1,4 +1,4 @@
  -#include "../../../../common/MessageData.h"
  +#include "../../../../common/IMessageData.h"
   #include "../../../../wsdd/WSDDHandler.h"
   #include "../../../../wsdd/WSDDService.h"
   #include "../../../../common/Handler.h"
  @@ -10,8 +10,8 @@
   public:
   	TestGlobal();
   	virtual ~TestGlobal();
  -  int Invoke(MessageData* pMsg);
  -  void OnFault(MessageData* pMsg);
  +  int Invoke(IMessageData* pMsg);
  +  void OnFault(IMessageData* pMsg);
   
     string GetOption(string sArg);
     void SetOption(string sOption, string Value);