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 su...@apache.org on 2003/10/20 08:40:24 UTC

cvs commit: ws-axis/c/src/server/handlers/transport/testhandler2 TestTransport.cpp TestTransport.h

susantha    2003/10/19 23:40:24

  Modified:    c/src/server/handlers/custom/echoStringHeaderHandler
                        ESHHandler.cpp ESHHandler.h
                        EchoStringHeaderHandler.cpp
               c/src/server/handlers/custom/loghandler LogHandler.cpp
                        LogHandler.h
               c/src/server/handlers/custom/simpleauthhandler
                        SimpleAuthorizationHandler.cpp
                        SimpleAuthorizationHandler.h
               c/src/server/handlers/global/testhandler1 TestGlobal.h
               c/src/server/handlers/transport/testhandler2
                        TestTransport.cpp TestTransport.h
  Log:
  updated include paths to point to new include file folder structure
  
  Revision  Changes    Path
  1.5       +6 -6      ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.cpp
  
  Index: ESHHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ESHHandler.cpp	15 Oct 2003 06:11:28 -0000	1.4
  +++ ESHHandler.cpp	20 Oct 2003 06:40:24 -0000	1.5
  @@ -66,12 +66,12 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "ESHHandler.h"
  -#include <GDefine.h>
  -#include <IHandlerSoapSerializer.h>
  -#include <IHandlerSoapDeSerializer.h>
  -#include "../../../../soap/HeaderBlock.h"
  -#include "../../../../soap/SoapHeader.h"
  -#include "../../../../soap/BasicNode.h"
  +#include <axis/common/GDefine.h>
  +#include <axis/common/IHandlerSoapSerializer.h>
  +#include <axis/common/IHandlerSoapDeSerializer.h>
  +#include <axis/soap/HeaderBlock.h>
  +#include <axis/soap/SoapHeader.h>
  +#include <axis/soap/BasicNode.h>
   #include <iostream>
   
   //////////////////////////////////////////////////////////////////////
  
  
  
  1.3       +1 -1      ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.h
  
  Index: ESHHandler.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ESHHandler.h	15 Aug 2003 10:00:10 -0000	1.2
  +++ ESHHandler.h	20 Oct 2003 06:40:24 -0000	1.3
  @@ -72,7 +72,7 @@
   #pragma once
   #endif // _MSC_VER > 1000
   
  -#include "../../../../common/Handler.h"
  +#include <axis/common/Handler.h>
   
   class ESHHandler : public Handler
   {
  
  
  
  1.3       +1 -1      ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/EchoStringHeaderHandler.cpp
  
  Index: EchoStringHeaderHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/EchoStringHeaderHandler.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- EchoStringHeaderHandler.cpp	15 Oct 2003 06:11:28 -0000	1.2
  +++ EchoStringHeaderHandler.cpp	20 Oct 2003 06:40:24 -0000	1.3
  @@ -72,7 +72,7 @@
   #endif
   
   #include "ESHHandler.h"
  -#include "../../../../common/GDefine.h"
  +#include <axis/common/GDefine.h>
   
   extern "C" {
   //the two export functions////////////////////////////////////////////
  
  
  
  1.12      +2 -2      ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.cpp
  
  Index: LogHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- LogHandler.cpp	17 Oct 2003 10:01:52 -0000	1.11
  +++ LogHandler.cpp	20 Oct 2003 06:40:24 -0000	1.12
  @@ -60,8 +60,8 @@
    */
   
   #include "LogHandler.h"
  -#include "../../../../soap/SoapDeSerializer.h"
  -#include "../../../../soap/SoapSerializer.h"
  +#include <axis/soap/SoapDeSerializer.h>
  +#include <axis/soap/SoapSerializer.h>
   #include <AxisTrace.h>
   #include <AxisException.h>
   #include <time.h>
  
  
  
  1.7       +4 -4      ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.h
  
  Index: LogHandler.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- LogHandler.h	16 Oct 2003 13:12:46 -0000	1.6
  +++ LogHandler.h	20 Oct 2003 06:40:24 -0000	1.7
  @@ -59,10 +59,10 @@
    *
    */
   
  -#include "../../../../common/IMessageData.h"
  -#include "../../../../wsdd/WSDDHandler.h"
  -#include "../../../../wsdd/WSDDService.h"
  -#include "../../../../common/Handler.h"
  +#include <axis/common/IMessageData.h>
  +#include <axis/wsdd/WSDDHandler.h>
  +#include <axis/wsdd/WSDDService.h>
  +#include <axis/common/Handler.h>
   
   #include <list>
   #include <string>
  
  
  
  1.7       +2 -2      ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.cpp
  
  Index: SimpleAuthorizationHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SimpleAuthorizationHandler.cpp	15 Oct 2003 06:11:29 -0000	1.6
  +++ SimpleAuthorizationHandler.cpp	20 Oct 2003 06:40:24 -0000	1.7
  @@ -60,8 +60,8 @@
    */
   
   #include "SimpleAuthorizationHandler.h"
  -#include "../../../../soap/SoapDeSerializer.h"
  -#include "../../../../soap/SoapSerializer.h"
  +#include <axis/soap/SoapDeSerializer.h>
  +#include <axis/soap/SoapSerializer.h>
   #include <string.h>
   #include <fstream>
   #include <string>
  
  
  
  1.5       +4 -4      ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.h
  
  Index: SimpleAuthorizationHandler.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SimpleAuthorizationHandler.h	2 Oct 2003 06:06:16 -0000	1.4
  +++ SimpleAuthorizationHandler.h	20 Oct 2003 06:40:24 -0000	1.5
  @@ -58,10 +58,10 @@
    * @author  Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
    *
    */
  -#include <IMessageData.h>
  -#include "../../../../wsdd/WSDDHandler.h"
  -#include "../../../../wsdd/WSDDService.h"
  -#include <Handler.h>
  +#include <axis/common/IMessageData.h>
  +#include <axis/wsdd/WSDDHandler.h>
  +#include <axis/wsdd/WSDDService.h>
  +#include <axis/common/Handler.h>
   #include <list>
   
   class SimpleAuthorizationHandler : public Handler
  
  
  
  1.7       +1 -1      ws-axis/c/src/server/handlers/global/testhandler1/TestGlobal.h
  
  Index: TestGlobal.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/global/testhandler1/TestGlobal.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TestGlobal.h	17 Oct 2003 10:01:52 -0000	1.6
  +++ TestGlobal.h	20 Oct 2003 06:40:24 -0000	1.7
  @@ -70,7 +70,7 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "../../../../common/Handler.h"
  +#include <axis/common/Handler.h>
   
   class TestGlobal : public Handler
   {
  
  
  
  1.9       +2 -2      ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.cpp
  
  Index: TestTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- TestTransport.cpp	17 Oct 2003 10:01:52 -0000	1.8
  +++ TestTransport.cpp	20 Oct 2003 06:40:24 -0000	1.9
  @@ -61,8 +61,8 @@
   
   
   #include "TestTransport.h"
  -#include "../../../../soap/SoapDeSerializer.h"
  -#include "../../../../soap/SoapSerializer.h"
  +#include <axis/soap/SoapDeSerializer.h>
  +#include <axis/soap/SoapSerializer.h>
   #include <string>
   #include <AxisTrace.h>
   #include <AxisException.h>
  
  
  
  1.6       +4 -4      ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.h
  
  Index: TestTransport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TestTransport.h	17 Oct 2003 10:01:52 -0000	1.5
  +++ TestTransport.h	20 Oct 2003 06:40:24 -0000	1.6
  @@ -58,10 +58,10 @@
    * @author  Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
    *
    */
  -#include "../../../../common/IMessageData.h"
  -#include "../../../../wsdd/WSDDHandler.h"
  -#include "../../../../wsdd/WSDDService.h"
  -#include "../../../../common/Handler.h"
  +#include <axis/common/IMessageData.h>
  +#include <axis/wsdd/WSDDHandler.h>
  +#include <axis/wsdd/WSDDService.h>
  +#include <axis/common/Handler.h>
   
   #include <list>