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 09:35:49 UTC

cvs commit: ws-axis/c/vc/xml XML.dsp

susantha    2003/10/20 00:35:49

  Modified:    c/include/axis/common AxisUtils.h
               c/src/server/samples/cppservicewrapper CPPServiceWrapper.hpp
               c/src/server/samples/cservicewrapper CServiceWrapper.hpp
               c/src/server/samples/libinteropbase BaseTests.h
               c/src/server/samples/serviceinteropbase BaseTestsWrapper.cpp
                        BaseTestsWrapper.h
               c/src/server/samples/serviceinteropgroupb
                        GroupBTestsWrapper.cpp GroupBTestsWrapper.h
               c/src/server/samples/simplewebservice/webservicewrapper
                        WebServiceWrapper.cpp WebServiceWrapper.h
               c/src/server/simple_axis_server ServerHelper.cpp
                        SimpleAxisServer.cpp
               c/src/server/web_services/cpp_deployment_wrapper
                        CPP_DeploymentWrapper.cpp
               c/vc/client client.dsp
               c/vc/client/deployment Deployment.dsp
               c/vc/common Common.dsp
               c/vc/engine Engine.dsp ExEngine.dsp
               c/vc/server/apache1_3 Apache1_3.dsp
               c/vc/server/apache2_0 Apache2_0.dsp
               c/vc/server/samples/cppservicewrapper cppservicewrapper.dsp
               c/vc/server/samples/cservicewrapper cservicewrapper.dsp
               c/vc/server/samples/webservicewrapper webservicewrapper.dsp
               c/vc/server/simple_axis_server SimpleAxisServer.dsp
               c/vc/soap Soap.dsp
               c/vc/wcg wcg.dsp
               c/vc/wsdd WSDD.dsp
               c/vc/xml XML.dsp
  Removed:     c/src/client Call.h
               c/src/common ArrayBean.h AxisConfig.h AxisException.h
                        AxisSocketUtils.h AxisTime.h AxisTrace.h
                        AxisUserAPI.h AxisUtils.h BasicHandler.h
                        BasicTypeSerializer.h GDefine.h Handler.h
                        IArrayBean.h IDeployerUtils.h
                        IHandlerSoapDeSerializer.h IHandlerSoapSerializer.h
                        IHeaderBlock.h IMessageData.h IParam.h
                        ISoapDeSerializer.h ISoapHeader.h ISoapMethod.h
                        ISoapSerializer.h IWrapperSoapDeSerializer.h
                        IWrapperSoapSerializer.h MessageData.h Packet.h
                        Param.h TypeMapping.h WrapperClassHandler.h
               c/src/engine AppScopeHandlerPool.h AxisEngine.h
                        ClientAxisEngine.h DeserializerPool.h
                        HandlerChain.h HandlerLoader.h HandlerPool.h
                        RequestScopeHandlerPool.h SerializerPool.h
                        ServerAxisEngine.h SessionScopeHandlerPool.h
                        SharedObject.h
               c/src/soap Attribute.h BasicNode.h CharacterElement.h
                        ComplexElement.h HeaderBlock.h SoapBody.h
                        SoapDeSerializer.h SoapEnvVersions.h SoapEnvelope.h
                        SoapFault.h SoapFaults.h SoapHeader.h
                        SoapKeywordMapping.h SoapMethod.h SoapSerializer.h
                        URIMapping.h XMLStreamHandler.h
               c/src/wcg BeanClass.h File.h Method.h TranslationUnit.h
                        Variable.h WCGenerator.h WSClass.h actions.h
                        cppyacc.hpp
               c/src/wsdd WSDDDeployment.h WSDDDocument.h WSDDHandler.h
                        WSDDKeywords.h WSDDService.h WSDDTransport.h
               c/src/xml QName.h
  Log:
  removed .h and .hpp files from the c/src/... folders and moved them to c/include/axis/... folders
  
  Revision  Changes    Path
  1.2       +41 -2     ws-axis/c/include/axis/common/AxisUtils.h
  
  Index: AxisUtils.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/common/AxisUtils.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AxisUtils.h	20 Oct 2003 03:18:19 -0000	1.1
  +++ AxisUtils.h	20 Oct 2003 07:35:47 -0000	1.2
  @@ -56,6 +56,7 @@
    *
    *
    * @author Susantha Kumara (skumara@virtusa.com)
  + * @author Roshan Weerasuriya (roshan@jkcs.slt.lk, roshan@opensource.lk)
    *
    */
   // AxisUtils.h: interface for the AxisUtils class.
  @@ -77,8 +78,46 @@
   	friend class TypeMapping;
   	friend class URIMapping;
   public:
  -	/*
  -	 *Clears the content of passed character array
  +	/**
  +	 * Converts the given character pointer value to lowercase.
  +	 * @param pchWord The character pointer to be converted.
  +	 * @return The converted lowercase character value
  +	 */
  +	static char* toLowerCase(const char* pchWord);
  +	/**
  +	 * Converts the given string to lowercase.
  +	 * @param pchWord The string to be converted.
  +	 * @return The converted lowercase string value
  +	 */
  +	static string toLowerCase(const string sWord);
  +	/**
  +	 * Converts the given character pointer value to uppercase.
  +	 * @param pchWord The character pointer to be converted.
  +	 * @return The converted uppercase character value
  +	 */
  +	static char* toUpperCase(const char* pchWord);
  +	/**
  +	 * Converts the given string to uppercase.
  +	 * @param pchWord The string to be converted.
  +	 * @return The converted uppercase string value
  +	 */
  +	static string toUpperCase(const string sWord);
  +	/**
  +	 * Searchs for the specified character in the given character array and returns whether it is found or not.
  +	 * @param pchStringToSearch The character array to be searched.
  +	 * @param cCharacter The character to search.
  +	 */
  +	static bool isCharacterAvailable(const char *pchStringToSearch, const char cCharacter);
  +	/**
  +	 * Searchs for the specified character in the given string and returns whether it is found or not.
  +	 * @param sString The string array to be searched.
  +	 * @param cCharacter The character to search.
  +	 */
  +	static bool isCharacterAvailable(const string &sString, const char cCharacter);
  +	/**
  +	 * Clears the content of passed character array
  +	 * @param arrCh The character array which is to be cleared.
  +	 * @param iSize The size of the array which is to be cleared.
   	 */
   	static int clearArray(char* arrCh, int iSize);
   	static void Initialize();
  
  
  
  1.5       +5 -8      ws-axis/c/src/server/samples/cppservicewrapper/CPPServiceWrapper.hpp
  
  Index: CPPServiceWrapper.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/cppservicewrapper/CPPServiceWrapper.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CPPServiceWrapper.hpp	10 Oct 2003 05:13:13 -0000	1.4
  +++ CPPServiceWrapper.hpp	20 Oct 2003 07:35:47 -0000	1.5
  @@ -3,14 +3,11 @@
   #define __WRAPPER_CLASS_CPPServiceWrapper_INCLUDED__
   
   #include "../cppservice/PPService.h"
  -#include "../../../common/WrapperClassHandler.h"
  -#include "../../../common/IMessageData.h"
  -#include "../../../common/GDefine.h"
  -#include "../../../common/IWrapperSoapDeSerializer.h"
  -#include "../../../common/IWrapperSoapSerializer.h"
  -#include "../../../common/ISoapMethod.h"
  -#include "../../../common/IParam.h"
  -#include "../../../common/IArrayBean.h"
  +#include <axis/common/WrapperClassHandler.h>
  +#include <axis/common/IMessageData.h>
  +#include <axis/common/IWrapperSoapDeSerializer.h>
  +#include <axis/common/IWrapperSoapSerializer.h>
  +#include <axis/common/IParam.h>
   
   class CPPServiceWrapper : public WrapperClassHandler
   {
  
  
  
  1.4       +7 -7      ws-axis/c/src/server/samples/cservicewrapper/CServiceWrapper.hpp
  
  Index: CServiceWrapper.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/cservicewrapper/CServiceWrapper.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CServiceWrapper.hpp	10 Oct 2003 05:13:14 -0000	1.3
  +++ CServiceWrapper.hpp	20 Oct 2003 07:35:47 -0000	1.4
  @@ -2,13 +2,13 @@
   #define __WRAPPER_CLASS_CSERVICEWRAPPER_INCLUDED__
   
   #include "../cservice/Service.h"
  -#include "../../../common/WrapperClassHandler.h"
  -#include "../../../common/IMessageData.h"
  -#include "../../../common/GDefine.h"
  -#include "../../../common/IWrapperSoapDeSerializer.h"
  -#include "../../../common/IWrapperSoapSerializer.h"
  -#include "../../../common/ISoapMethod.h"
  -#include "../../../common/IParam.h"
  +#include <axis/common/WrapperClassHandler.h>
  +#include <axis/common/IMessageData.h>
  +#include <axis/common/GDefine.h>
  +#include <axis/common/IWrapperSoapDeSerializer.h>
  +#include <axis/common/IWrapperSoapSerializer.h>
  +#include <axis/common/ISoapMethod.h>
  +#include <axis/common/IParam.h>
   
   class CServiceWrapper : public WrapperClassHandler
   {
  
  
  
  1.5       +1 -1      ws-axis/c/src/server/samples/libinteropbase/BaseTests.h
  
  Index: BaseTests.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/libinteropbase/BaseTests.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BaseTests.h	10 Oct 2003 05:13:14 -0000	1.4
  +++ BaseTests.h	20 Oct 2003 07:35:47 -0000	1.5
  @@ -5,7 +5,7 @@
   #if !defined(AFX_BASETESTS_H__64DDD7A7_E766_4CF1_AA82_7F5E67A3F25F__INCLUDED_)
   #define AFX_BASETESTS_H__64DDD7A7_E766_4CF1_AA82_7F5E67A3F25F__INCLUDED_
   
  -#include "../../../common/AccessBean.h"
  +#include <axis/common/AccessBean.h>
   #include <string>
   
   using namespace std;
  
  
  
  1.5       +3 -3      ws-axis/c/src/server/samples/serviceinteropbase/BaseTestsWrapper.cpp
  
  Index: BaseTestsWrapper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/serviceinteropbase/BaseTestsWrapper.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BaseTestsWrapper.cpp	1 Aug 2003 14:34:53 -0000	1.4
  +++ BaseTestsWrapper.cpp	20 Oct 2003 07:35:47 -0000	1.5
  @@ -3,9 +3,9 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "BaseTestsWrapper.h"
  -#include "../../../common/IWrapperSoapDeSerializer.h"
  -#include "../../../common/IWrapperSoapSerializer.h"
  -#include "../../../common/BasicTypeSerializer.h"
  +#include <axis/common/IWrapperSoapDeSerializer.h>
  +#include <axis/common/IWrapperSoapSerializer.h>
  +#include <axis/common/BasicTypeSerializer.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.4       +4 -4      ws-axis/c/src/server/samples/serviceinteropbase/BaseTestsWrapper.h
  
  Index: BaseTestsWrapper.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/serviceinteropbase/BaseTestsWrapper.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BaseTestsWrapper.h	10 Oct 2003 05:13:14 -0000	1.3
  +++ BaseTestsWrapper.h	20 Oct 2003 07:35:47 -0000	1.4
  @@ -6,10 +6,10 @@
   #define AFX_BASETESTSWRAPPER_H__AF54F4D1_C133_461C_BFCF_87D4056009FC__INCLUDED_
   
   #include "../libinteropbase/BaseTests.h"
  -#include "../../../common/WrapperClassHandler.h"
  -#include "../../../common/IMessageData.h"
  -#include "../../../common/GDefine.h"
  -#include "../../../common/AccessBean.h"
  +#include <axis/common/WrapperClassHandler.h>
  +#include <axis/common/IMessageData.h>
  +#include <axis/common/GDefine.h>
  +#include <axis/common/AccessBean.h>
   
   class BaseTestsWrapper : public WrapperClassHandler  
   {
  
  
  
  1.5       +3 -3      ws-axis/c/src/server/samples/serviceinteropgroupb/GroupBTestsWrapper.cpp
  
  Index: GroupBTestsWrapper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/serviceinteropgroupb/GroupBTestsWrapper.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- GroupBTestsWrapper.cpp	1 Aug 2003 14:34:53 -0000	1.4
  +++ GroupBTestsWrapper.cpp	20 Oct 2003 07:35:47 -0000	1.5
  @@ -3,9 +3,9 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "GroupBTestsWrapper.h"
  -#include "../../../common/IWrapperSoapDeSerializer.h"
  -#include "../../../common/IWrapperSoapSerializer.h"
  -#include "../../../common/BasicTypeSerializer.h"
  +#include <axis/common/IWrapperSoapDeSerializer.h>
  +#include <axis/common/IWrapperSoapSerializer.h>
  +#include <axis/common/BasicTypeSerializer.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.4       +4 -4      ws-axis/c/src/server/samples/serviceinteropgroupb/GroupBTestsWrapper.h
  
  Index: GroupBTestsWrapper.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/serviceinteropgroupb/GroupBTestsWrapper.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- GroupBTestsWrapper.h	10 Oct 2003 05:13:14 -0000	1.3
  +++ GroupBTestsWrapper.h	20 Oct 2003 07:35:47 -0000	1.4
  @@ -6,10 +6,10 @@
   #define AFX_GROUPBTESTSWRAPPER_H__93570D23_4717_476D_B716_401934A332E4__INCLUDED_
   
   #include "../libinteropgroupb/GroupBTests.h"
  -#include "../../../common/WrapperClassHandler.h"
  -#include "../../../common/IMessageData.h"
  -#include "../../../common/GDefine.h"
  -#include "../../../common/AccessBean.h"
  +#include <axis/common/WrapperClassHandler.h>
  +#include <axis/common/IMessageData.h>
  +#include <axis/common/GDefine.h>
  +#include <axis/common/AccessBean.h>
   
   class GroupBTestsWrapper : public WrapperClassHandler  
   {
  
  
  
  1.9       +1 -1      ws-axis/c/src/server/samples/simplewebservice/webservicewrapper/WebServiceWrapper.cpp
  
  Index: WebServiceWrapper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/simplewebservice/webservicewrapper/WebServiceWrapper.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- WebServiceWrapper.cpp	16 Oct 2003 13:12:46 -0000	1.8
  +++ WebServiceWrapper.cpp	20 Oct 2003 07:35:48 -0000	1.9
  @@ -66,7 +66,7 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "WebServiceWrapper.h"
  -#include "../../../common/AxisTrace.h"
  +#include <axis/common/AxisTrace.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.5       +8 -8      ws-axis/c/src/server/samples/simplewebservice/webservicewrapper/WebServiceWrapper.h
  
  Index: WebServiceWrapper.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/simplewebservice/webservicewrapper/WebServiceWrapper.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- WebServiceWrapper.h	15 Oct 2003 06:11:29 -0000	1.4
  +++ WebServiceWrapper.h	20 Oct 2003 07:35:48 -0000	1.5
  @@ -69,14 +69,14 @@
   #define AFX_WSSERVICE1_H__03F0FC70_6AA9_4D69_A387_6BDEAE1C9459__INCLUDED_
   
   #include "../webservice/WebService.h"
  -#include "../../../../common/WrapperClassHandler.h"
  -#include "../../../../common/IMessageData.h"
  -#include "../../../../common/GDefine.h"
  -#include "../../../../common/IWrapperSoapDeSerializer.h"
  -#include "../../../../common/IWrapperSoapSerializer.h"
  -#include "../../../../common/ISoapMethod.h"
  -#include "../../../../common/IParam.h"
  -#include "../../../../common/IArrayBean.h"
  +#include <axis/common/WrapperClassHandler.h>
  +#include <axis/common/IMessageData.h>
  +#include <axis/common/GDefine.h>
  +#include <axis/common/IWrapperSoapDeSerializer.h>
  +#include <axis/common/IWrapperSoapSerializer.h>
  +#include <axis/common/ISoapMethod.h>
  +#include <axis/common/IParam.h>
  +#include <axis/common/IArrayBean.h>
   
   class webservicewrapper : public WrapperClassHandler
   {
  
  
  
  1.5       +1 -5      ws-axis/c/src/server/simple_axis_server/ServerHelper.cpp
  
  Index: ServerHelper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/simple_axis_server/ServerHelper.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ServerHelper.cpp	19 Oct 2003 17:03:56 -0000	1.4
  +++ ServerHelper.cpp	20 Oct 2003 07:35:48 -0000	1.5
  @@ -67,11 +67,7 @@
   
   #include <iostream>
   #include <stdio.h>
  -#include <map>
  -#include "ServerHelper.h"
  -#include "../../common/AxisUtils.h"
  -
  -using namespace std;
  +#include <axis/server/simple_axis_server/ServerHelper.h>
   
   int getSeperatedHTTPParts(string sClientReqStream, string& sHTTPHeaders, string& sHTTPBody, map<HTTP_MAP_KEYWORDS, HTTP_MAP_TYPE*> *map_HTTP_Headers) {
   			
  
  
  
  1.12      +4 -4      ws-axis/c/src/server/simple_axis_server/SimpleAxisServer.cpp
  
  Index: SimpleAxisServer.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/simple_axis_server/SimpleAxisServer.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- SimpleAxisServer.cpp	19 Oct 2003 17:03:56 -0000	1.11
  +++ SimpleAxisServer.cpp	20 Oct 2003 07:35:48 -0000	1.12
  @@ -75,10 +75,10 @@
   #endif
   
   //#include <stdio.h>
  -#include "../../common/Packet.h"
  -#include "../../common/AxisConfig.h"
  -#include "../../common/AxisSocketUtils.h"
  -#include "ServerHelper.h"
  +#include <axis/common/Packet.h>
  +#include <axis/common/AxisConfig.h>
  +#include <axis/common/AxisSocketUtils.h>
  +#include <axis/server/simple_axis_server/ServerHelper.h>
   
   #define MAXPENDING 5    /* Maximum outstanding connection requests */
   #define RCVBUFSIZE 1000   /* Size of receive buffer */
  
  
  
  1.4       +1 -1      ws-axis/c/src/server/web_services/cpp_deployment_wrapper/CPP_DeploymentWrapper.cpp
  
  Index: CPP_DeploymentWrapper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/web_services/cpp_deployment_wrapper/CPP_DeploymentWrapper.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CPP_DeploymentWrapper.cpp	19 Oct 2003 17:05:13 -0000	1.3
  +++ CPP_DeploymentWrapper.cpp	20 Oct 2003 07:35:48 -0000	1.4
  @@ -66,7 +66,7 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "CPP_DeploymentWrapper.h"
  -#include "common/IDeployerUtils.h"
  +#include <axis/common/IDeployerUtils.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.6       +11 -11    ws-axis/c/vc/client/client.dsp
  
  Index: client.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/client/client.dsp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- client.dsp	15 Oct 2003 13:40:13 -0000	1.5
  +++ client.dsp	20 Oct 2003 07:35:48 -0000	1.6
  @@ -65,7 +65,7 @@
   # PROP Intermediate_Dir "../../bin/win32/client"
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/common" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /FR /FD /GZ /c
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /FR /FD /GZ /c
   # SUBTRACT CPP /YX
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
   # ADD RSC /l 0x409 /d "_DEBUG"
  @@ -127,43 +127,43 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\AxisTransport.h
  +SOURCE=..\..\include\axis\client\transport\AxisTransport.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\Call.h
  +SOURCE=..\..\include\axis\client\Call.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\Channel.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\Channel.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\HttpTransport.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\HttpTransport.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\Platform.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\Platform.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\Receiver.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\Receiver.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\Sender.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\Sender.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\Transport.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\Transport.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\TransportFactory.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\TransportFactory.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\client\transport\axis\Url.hpp
  +SOURCE=..\..\include\axis\client\transport\axis\Url.hpp
   # End Source File
   # End Group
   # End Target
  
  
  
  1.7       +3 -2      ws-axis/c/vc/client/deployment/Deployment.dsp
  
  Index: Deployment.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/client/deployment/Deployment.dsp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Deployment.dsp	16 Oct 2003 12:32:00 -0000	1.6
  +++ Deployment.dsp	20 Oct 2003 07:35:48 -0000	1.7
  @@ -66,7 +66,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
  +# ADD CPP /nologo /Gd /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
   # ADD RSC /l 0x409 /d "_DEBUG"
   BSC32=bscmake.exe
  @@ -74,7 +74,8 @@
   # ADD BSC32 /nologo
   LINK32=link.exe
   # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
  -# ADD LINK32 Engine_D.lib Common_D.lib Soap_D.lib WSDD_D.lib client_D.lib xerces-c_2D.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /out:"../../../release/win32/Deployment_D.exe" /pdbtype:sept /libpath:"../../../lib/win32/axis" /libpath:"../../../lib/win32/xercesc"
  +# ADD LINK32 Engine_D.lib Common_D.lib Soap_D.lib WSDD_D.lib client_D.lib xerces-c_2D.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"../../../lib/win32/axis" /libpath:"../../../lib/win32/xercesc"
  +
   
   !ENDIF 
   
  
  
  
  1.26      +31 -31    ws-axis/c/vc/common/Common.dsp
  
  Index: Common.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/common/Common.dsp,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- Common.dsp	16 Oct 2003 09:29:30 -0000	1.25
  +++ Common.dsp	20 Oct 2003 07:35:48 -0000	1.26
  @@ -139,127 +139,127 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\src\common\ArrayBean.h
  +SOURCE=..\..\include\axis\common\ArrayBean.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisConfig.h
  +SOURCE=..\..\include\axis\common\AxisConfig.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisException.h
  +SOURCE=..\..\include\axis\common\AxisException.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisSocketUtils.h
  +SOURCE=..\..\include\axis\common\AxisSocketUtils.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisTime.h
  +SOURCE=..\..\include\axis\common\AxisTime.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisTrace.h
  +SOURCE=..\..\include\axis\common\AxisTrace.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisUserAPI.h
  +SOURCE=..\..\include\axis\common\AxisUserAPI.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisUtils.h
  +SOURCE=..\..\include\axis\common\AxisUtils.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\AxisWrapperAPI.h
  +SOURCE=..\..\include\axis\common\AxisWrapperAPI.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\BasicHandler.h
  +SOURCE=..\..\include\axis\common\BasicHandler.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\BasicTypeSerializer.h
  +SOURCE=..\..\include\axis\common\BasicTypeSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\GDefine.h
  +SOURCE=..\..\include\axis\common\GDefine.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\Handler.h
  +SOURCE=..\..\include\axis\common\Handler.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IArrayBean.h
  +SOURCE=..\..\include\axis\common\IArrayBean.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IDeployerUtils.h
  +SOURCE=..\..\include\axis\common\IDeployerUtils.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IHandlerSoapDeSerializer.h
  +SOURCE=..\..\include\axis\common\IHandlerSoapDeSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IHandlerSoapSerializer.h
  +SOURCE=..\..\include\axis\common\IHandlerSoapSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IHeaderBlock.h
  +SOURCE=..\..\include\axis\common\IHeaderBlock.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IMessageData.h
  +SOURCE=..\..\include\axis\common\IMessageData.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IParam.h
  +SOURCE=..\..\include\axis\common\IParam.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\ISoapDeserializer.h
  +SOURCE=..\..\include\axis\common\ISoapDeSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\ISoapHeader.h
  +SOURCE=..\..\include\axis\common\ISoapHeader.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\ISoapMethod.h
  +SOURCE=..\..\include\axis\common\ISoapMethod.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\ISoapSerializer.h
  +SOURCE=..\..\include\axis\common\ISoapSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IWrapperSoapDeSerializer.h
  +SOURCE=..\..\include\axis\common\IWrapperSoapDeSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\IWrapperSoapSerializer.h
  +SOURCE=..\..\include\axis\common\IWrapperSoapSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\MessageData.h
  +SOURCE=..\..\include\axis\common\MessageData.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\Packet.h
  +SOURCE=..\..\include\axis\common\Packet.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\Param.h
  +SOURCE=..\..\include\axis\common\Param.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\TypeMapping.h
  +SOURCE=..\..\include\axis\common\TypeMapping.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\common\WrapperClassHandler.h
  +SOURCE=..\..\include\axis\common\WrapperClassHandler.h
   # End Source File
   # End Group
   # End Target
  
  
  
  1.13      +12 -12    ws-axis/c/vc/engine/Engine.dsp
  
  Index: Engine.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/engine/Engine.dsp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Engine.dsp	23 Sep 2003 06:17:00 -0000	1.12
  +++ Engine.dsp	20 Oct 2003 07:35:48 -0000	1.13
  @@ -143,51 +143,51 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\src\engine\AppScopeHandlerPool.h
  +SOURCE=..\..\include\axis\engine\AppScopeHandlerPool.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\AxisEngine.h
  +SOURCE=..\..\include\axis\engine\AxisEngine.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\ClientAxisEngine.h
  +SOURCE=..\..\include\axis\engine\ClientAxisEngine.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\DeserializerPool.h
  +SOURCE=..\..\include\axis\engine\DeserializerPool.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\HandlerChain.h
  +SOURCE=..\..\include\axis\engine\HandlerChain.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\HandlerLoader.h
  +SOURCE=..\..\include\axis\engine\HandlerLoader.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\HandlerPool.h
  +SOURCE=..\..\include\axis\engine\HandlerPool.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\RequestScopeHandlerPool.h
  +SOURCE=..\..\include\axis\engine\RequestScopeHandlerPool.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\SerializerPool.h
  +SOURCE=..\..\include\axis\engine\SerializerPool.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\ServerAxisEngine.h
  +SOURCE=..\..\include\axis\engine\ServerAxisEngine.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\SessionScopeHandlerPool.h
  +SOURCE=..\..\include\axis\engine\SessionScopeHandlerPool.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\engine\SharedObject.h
  +SOURCE=..\..\include\axis\engine\SharedObject.h
   # End Source File
   # End Group
   # End Target
  
  
  
  1.2       +1 -1      ws-axis/c/vc/engine/ExEngine.dsp
  
  Index: ExEngine.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/engine/ExEngine.dsp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ExEngine.dsp	11 Sep 2003 12:29:42 -0000	1.1
  +++ ExEngine.dsp	20 Oct 2003 07:35:48 -0000	1.2
  @@ -67,7 +67,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" /FR /FD /GZ /c
  +# ADD CPP /nologo /Gd /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" /FR /FD /GZ /c
   # SUBTRACT CPP /YX /Yc /Yu
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
   # ADD RSC /l 0x409 /d "_DEBUG"
  
  
  
  1.12      +1 -1      ws-axis/c/vc/server/apache1_3/Apache1_3.dsp
  
  Index: Apache1_3.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/server/apache1_3/Apache1_3.dsp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Apache1_3.dsp	15 Oct 2003 13:45:23 -0000	1.11
  +++ Apache1_3.dsp	20 Oct 2003 07:35:48 -0000	1.12
  @@ -71,7 +71,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "APACHE1_3_EXPORTS" /YX /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../include/apache" /I "../../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "APACHE1_3_EXPORTS" /D "AXIS_APACHE1_3" /YX /FD /GZ /c
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "APACHE1_3_EXPORTS" /D "AXIS_APACHE1_3" /YX /FD /GZ /c
   # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
  
  
  
  1.5       +1 -1      ws-axis/c/vc/server/apache2_0/Apache2_0.dsp
  
  Index: Apache2_0.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/server/apache2_0/Apache2_0.dsp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Apache2_0.dsp	19 Sep 2003 14:48:42 -0000	1.4
  +++ Apache2_0.dsp	20 Oct 2003 07:35:48 -0000	1.5
  @@ -69,7 +69,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "APACHE2_0_EXPORTS" /YX /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c
  +# ADD CPP /nologo /Gd /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c
   # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
  
  
  
  1.2       +2 -2      ws-axis/c/vc/server/samples/cppservicewrapper/cppservicewrapper.dsp
  
  Index: cppservicewrapper.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/server/samples/cppservicewrapper/cppservicewrapper.dsp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cppservicewrapper.dsp	3 Sep 2003 05:25:05 -0000	1.1
  +++ cppservicewrapper.dsp	20 Oct 2003 07:35:49 -0000	1.2
  @@ -68,8 +68,8 @@
   # PROP Intermediate_Dir "../../../../bin/win32/samples/cppservicewrapper"
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
  -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CPPSERVICEWRAPPER_EXPORTS" /YX /FD /GZ  /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CPPSERVICEWRAPPER_EXPORTS" /YX /FD /GZ  /c
  +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CPPSERVICEWRAPPER_EXPORTS" /YX /FD /GZ /c
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CPPSERVICEWRAPPER_EXPORTS" /YX /FD /GZ /c
   # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
  
  
  
  1.2       +2 -2      ws-axis/c/vc/server/samples/cservicewrapper/cservicewrapper.dsp
  
  Index: cservicewrapper.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/server/samples/cservicewrapper/cservicewrapper.dsp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cservicewrapper.dsp	3 Sep 2003 05:25:05 -0000	1.1
  +++ cservicewrapper.dsp	20 Oct 2003 07:35:49 -0000	1.2
  @@ -68,8 +68,8 @@
   # PROP Intermediate_Dir "../../../../bin/win32/samples/cservicewrapper"
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
  -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CSERVICEWRAPPER_EXPORTS" /YX /FD /GZ  /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CSERVICEWRAPPER_EXPORTS" /YX /FD /GZ  /c
  +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CSERVICEWRAPPER_EXPORTS" /YX /FD /GZ /c
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CSERVICEWRAPPER_EXPORTS" /YX /FD /GZ /c
   # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
  
  
  
  1.9       +1 -1      ws-axis/c/vc/server/samples/webservicewrapper/webservicewrapper.dsp
  
  Index: webservicewrapper.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/server/samples/webservicewrapper/webservicewrapper.dsp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- webservicewrapper.dsp	18 Sep 2003 06:28:56 -0000	1.8
  +++ webservicewrapper.dsp	20 Oct 2003 07:35:49 -0000	1.9
  @@ -70,7 +70,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WSSERVICE_EXPORTS" /Yu"stdafx.h" /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WSSERVICE_EXPORTS" /FR /FD /GZ /c
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WSSERVICE_EXPORTS" /FR /FD /GZ /c
   # SUBTRACT CPP /YX /Yc /Yu
   # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
   # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
  
  
  
  1.8       +2 -6      ws-axis/c/vc/server/simple_axis_server/SimpleAxisServer.dsp
  
  Index: SimpleAxisServer.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/server/simple_axis_server/SimpleAxisServer.dsp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SimpleAxisServer.dsp	19 Oct 2003 17:06:55 -0000	1.7
  +++ SimpleAxisServer.dsp	20 Oct 2003 07:35:49 -0000	1.8
  @@ -67,7 +67,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
   # ADD RSC /l 0x409 /d "_DEBUG"
   BSC32=bscmake.exe
  @@ -100,11 +100,7 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\..\src\server\simple_axis_server\HTTP_KeyWords.h
  -# End Source File
  -# Begin Source File
  -
  -SOURCE=..\..\..\src\server\simple_axis_server\ServerHelper.h
  +SOURCE=..\..\..\include\axis\server\simple_axis_server\ServerHelper.h
   # End Source File
   # End Group
   # Begin Group "Resource Files"
  
  
  
  1.9       +17 -17    ws-axis/c/vc/soap/Soap.dsp
  
  Index: Soap.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/soap/Soap.dsp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Soap.dsp	11 Sep 2003 12:29:43 -0000	1.8
  +++ Soap.dsp	20 Oct 2003 07:35:49 -0000	1.9
  @@ -151,71 +151,71 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\src\soap\Attribute.h
  +SOURCE=..\..\include\axis\soap\Attribute.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\BasicNode.h
  +SOURCE=..\..\include\axis\soap\BasicNode.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\CharacterElement.h
  +SOURCE=..\..\include\axis\soap\CharacterElement.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\ComplexElement.h
  +SOURCE=..\..\include\axis\soap\ComplexElement.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\HeaderBlock.h
  +SOURCE=..\..\include\axis\soap\HeaderBlock.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapBody.h
  +SOURCE=..\..\include\axis\soap\SoapBody.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapDeSerializer.h
  +SOURCE=..\..\include\axis\soap\SoapDeSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapEnvelope.h
  +SOURCE=..\..\include\axis\soap\SoapEnvelope.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapEnvVersions.h
  +SOURCE=..\..\include\axis\soap\SoapEnvVersions.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapFault.h
  +SOURCE=..\..\include\axis\soap\SoapFault.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapFaults.h
  +SOURCE=..\..\include\axis\soap\SoapFaults.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapHeader.h
  +SOURCE=..\..\include\axis\soap\SoapHeader.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapKeywordMapping.h
  +SOURCE=..\..\include\axis\soap\SoapKeywordMapping.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapMethod.h
  +SOURCE=..\..\include\axis\soap\SoapMethod.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\SoapSerializer.h
  +SOURCE=..\..\include\axis\soap\SoapSerializer.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\URIMapping.h
  +SOURCE=..\..\include\axis\soap\URIMapping.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\soap\XMLStreamHandler.h
  +SOURCE=..\..\include\axis\soap\XMLStreamHandler.h
   # End Source File
   # End Group
   # End Target
  
  
  
  1.5       +11 -11    ws-axis/c/vc/wcg/wcg.dsp
  
  Index: wcg.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/wcg/wcg.dsp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- wcg.dsp	4 Aug 2003 05:12:56 -0000	1.4
  +++ wcg.dsp	20 Oct 2003 07:35:49 -0000	1.5
  @@ -42,7 +42,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
  -# ADD CPP /nologo /W3 /GX /O1 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
  +# ADD CPP /nologo /W3 /GX /O1 /I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
   # SUBTRACT CPP /YX
   # ADD BASE RSC /l 0x409 /d "NDEBUG"
   # ADD RSC /l 0x409 /d "NDEBUG"
  @@ -68,7 +68,7 @@
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
  -# ADD CPP /nologo /ML /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
  +# ADD CPP /nologo /ML /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
   # SUBTRACT CPP /YX /Yc /Yu
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
   # ADD RSC /l 0x409 /d "_DEBUG"
  @@ -139,39 +139,39 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\actions.h
  +SOURCE=..\..\include\axis\wcg\actions.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\BeanClass.h
  +SOURCE=..\..\include\axis\wcg\BeanClass.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\cppyacc.hpp
  +SOURCE=..\..\include\axis\wcg\cppyacc.hpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\File.h
  +SOURCE=..\..\include\axis\wcg\File.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\Method.h
  +SOURCE=..\..\include\axis\wcg\Method.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\TranslationUnit.h
  +SOURCE=..\..\include\axis\wcg\TranslationUnit.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\Variable.h
  +SOURCE=..\..\include\axis\wcg\Variable.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\WCGenerator.h
  +SOURCE=..\..\include\axis\wcg\WCGenerator.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wcg\WSClass.h
  +SOURCE=..\..\include\axis\wcg\WSClass.h
   # End Source File
   # End Group
   # Begin Group "Resource Files"
  
  
  
  1.8       +10 -6     ws-axis/c/vc/wsdd/WSDD.dsp
  
  Index: WSDD.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/wsdd/WSDD.dsp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- WSDD.dsp	16 Oct 2003 09:34:54 -0000	1.7
  +++ WSDD.dsp	20 Oct 2003 07:35:49 -0000	1.8
  @@ -115,27 +115,31 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\src\wsdd\WSDDDeployment.h
  +SOURCE=..\..\include\axis\wsdd\WSDDDefines.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wsdd\WSDDDocument.h
  +SOURCE=..\..\include\axis\wsdd\WSDDDeployment.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wsdd\WSDDHandler.h
  +SOURCE=..\..\include\axis\wsdd\WSDDDocument.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wsdd\WSDDKeywords.h
  +SOURCE=..\..\include\axis\wsdd\WSDDHandler.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wsdd\WSDDService.h
  +SOURCE=..\..\include\axis\wsdd\WSDDKeywords.h
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\src\wsdd\WSDDTransport.h
  +SOURCE=..\..\include\axis\wsdd\WSDDService.h
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\include\axis\wsdd\WSDDTransport.h
   # End Source File
   # End Group
   # End Target
  
  
  
  1.7       +3 -3      ws-axis/c/vc/xml/XML.dsp
  
  Index: XML.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/xml/XML.dsp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XML.dsp	11 Sep 2003 12:29:43 -0000	1.6
  +++ XML.dsp	20 Oct 2003 07:35:49 -0000	1.7
  @@ -41,7 +41,7 @@
   # PROP Intermediate_Dir "../../bin/win32/xml"
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
  -# ADD CPP /nologo /MT /W3 /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /FD /c
  +# ADD CPP /nologo /MT /W3 /O2 /I "../../include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /FD /c
   # SUBTRACT CPP /YX
   # ADD BASE RSC /l 0x409 /d "NDEBUG"
   # ADD RSC /l 0x409 /d "NDEBUG"
  @@ -65,7 +65,7 @@
   # PROP Intermediate_Dir "../../bin/win32/xml"
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
  -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /FD /GZ /c
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /FD /GZ /c
   # SUBTRACT CPP /YX
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
   # ADD RSC /l 0x409 /d "_DEBUG"
  @@ -95,7 +95,7 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  -SOURCE=..\..\src\xml\QName.h
  +SOURCE=..\..\include\axis\xml\QName.h
   # End Source File
   # End Group
   # End Target