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/09/27 10:33:29 UTC

cvs commit: ws-axis/c/vc/server/apache1_3 Apache1_3.dsp

susantha    2003/09/27 01:33:29

  Modified:    c/src/client Call.cpp Call.h
               c/src/client/samples/Calculator Calculator.cpp
               c/src/client/transport/axis AxisTransport.cpp
                        AxisTransport.h Channel.hpp Receiver.cpp
                        Transport.cpp TransportFactory.hpp
               c/src/common AxisConfig.h AxisException.cpp
               c/src/server/simple_axis_server SimpleAxisServer.cpp
               c/src/soap SoapFault.cpp SoapFault.h
               c/vc/client/samples/Calculator Calculator.dsp
               c/vc/common Common.dsp
               c/vc/server/apache1_3 Apache1_3.dsp
  Log:
  Improved client side code
  
  Revision  Changes    Path
  1.8       +8 -12     ws-axis/c/src/client/Call.cpp
  
  Index: Call.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/Call.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Call.cpp	26 Sep 2003 14:05:06 -0000	1.7
  +++ Call.cpp	27 Sep 2003 08:33:28 -0000	1.8
  @@ -3,19 +3,14 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "Call.h"
  -//#include "../common/IMessageData.h"
  -//#include "../common/ISoapMethod.h"
  +#include <AxisConfig.h>
  +#include "transport/axis/AxisTransport.h"
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
   //////////////////////////////////////////////////////////////////////
   
  -extern "C" int initialize_module(int bServer);
  -
  -extern "C" int send_response_bytes(const char* res, const void* opstream);
  -extern "C" int get_request_bytes(char* req, int reqsize, int* retsize, const void* ipstream);
  -extern "C" int send_transport_information(void *str);
  -extern "C" int receive_transport_information(void *str);
  +extern "C" int initialize_module(int bServer, const char * wsddPath);
   
   Call::Call()
   {
  @@ -25,7 +20,8 @@
   	m_pIWSDZ = NULL;
   	m_Soap.so.http.ip_headercount = 0;
   	m_Soap.so.http.ip_headers = NULL;
  -	initialize_module(0);
  +	initialize_module(0, WSDDFILEPATH);
  +	m_pTransport = NULL;
   }
   
   Call::~Call()
  @@ -248,9 +244,8 @@
    */
   int Call::OpenConnection()
   { 
  -    m_pTransport = new AxisTransport(m_Soap);
  -    
  -	return m_Transport->OpenConnection();
  +    m_pTransport = new AxisTransport(&m_Soap);
  +    return m_pTransport->OpenConnection();
   }
   
   /**
  @@ -259,6 +254,7 @@
   void Call::CloseConnection()
   {
       m_pTransport->CloseConnection();
  +	delete m_pTransport;
   }
   
   void Call::SetSOAPVersion(SOAP_VERSION version)
  
  
  
  1.6       +3 -0      ws-axis/c/src/client/Call.h
  
  Index: Call.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/Call.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Call.h	23 Sep 2003 11:35:07 -0000	1.5
  +++ Call.h	27 Sep 2003 08:33:28 -0000	1.6
  @@ -8,6 +8,8 @@
   #include "../common/IParam.h"
   #include "../engine/ClientAxisEngine.h"
   
  +class AxisTransport;
  +
   /* A separate call class object should be used by each thread */
   class Call  
   {
  @@ -55,6 +57,7 @@
   	XSDTYPE m_nReturnType;
   	ComplexObjectHandler m_ReturnCplxObj;
   	Ax_soapstream m_Soap;
  +	AxisTransport* m_pTransport;
   };
   
   #endif // !defined(AFX_CALL_H__D13E5626_0A9B_43EA_B606_364B98CEDAA8__INCLUDED_)
  
  
  
  1.9       +1 -1      ws-axis/c/src/client/samples/Calculator/Calculator.cpp
  
  Index: Calculator.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/samples/Calculator/Calculator.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Calculator.cpp	26 Sep 2003 14:05:07 -0000	1.8
  +++ Calculator.cpp	27 Sep 2003 08:33:28 -0000	1.9
  @@ -30,7 +30,7 @@
   	/* The value for SOAPAction is specified in the binding section of the WSDL */
   	m_pCall->SetHeader("SOAPAction", "servicename");
   	/* End point URI too can be taken from WSDL */
  -	m_pCall->SetEndpointURI("http://localhost:8080/axis/Calculator");
  +	m_pCall->SetEndpointURI("http://192.168.101.3:8080/axis/Calculator");
   }
   
   Calculator::~Calculator()
  
  
  
  1.3       +21 -19    ws-axis/c/src/client/transport/axis/AxisTransport.cpp
  
  Index: AxisTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/AxisTransport.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AxisTransport.cpp	26 Sep 2003 15:02:02 -0000	1.2
  +++ AxisTransport.cpp	27 Sep 2003 08:33:28 -0000	1.3
  @@ -1,8 +1,10 @@
  -#include <stdio.h>
  -#include <string.h>
  -#include <iostream.h>
  -#include "../../../common/Packet.h"
  +#pragma warning (disable : 4786)
  +
   #include "AxisTransport.h"
  +#include "TransportFactory.hpp"
  +#include "Transport.hpp"
  +#include "Sender.hpp"
  +#include "Receiver.hpp"
   
   AxisTransport::AxisTransport(Ax_soapstream* pSoap)
   {
  @@ -26,21 +28,20 @@
   {
       //Step 1 - Open Transport layer connection taking into account protocol and endpoint URI in m_Soap
       Url objUrl(m_pSoap->so.http.uri_path);
  -    TransportFactory objTransportFactory;
  -    m_pHttpTransport = objTransportFactory.getTransport(objUrl);
  +    m_pHttpTransport = TransportFactory::GetTransport(objUrl);
       if(m_pHttpTransport->Init())
       {
          m_pSender = new Sender(m_pHttpTransport);
          m_pReceiver = new Receiver(m_pHttpTransport);
  -       //Step 2 - Set Created streams to m_Soap.str.ip_stream and m_Soap.str.op_stream
  -       m_pSoap.str.op_stream = m_pSender;
  -       m_pSoap.str.ip_stream = m_pReceiver;
  +       //Step 2 - Set Created streams to m_pSoap->str.ip_stream and m_pSoap->str.op_stream
  +       m_pSoap->str.op_stream = m_pSender;
  +       m_pSoap->str.ip_stream = m_pReceiver;
          
          //Step 3 - Add function pointers to the m_Soap structure
  -       m_pSoap.transport.pGetFunct = Get_bytes;
  -       m_pSoap.transport.pSendFunct = Send_bytes;
  -       m_pSoap.transport.pGetTrtFunct = Receive_transport_information;
  -       m_pSoap.transport.pSendTrtFunct = Send_transport_information; 
  +       m_pSoap->transport.pGetFunct = Get_bytes;
  +       m_pSoap->transport.pSendFunct = Send_bytes;
  +       m_pSoap->transport.pGetTrtFunct = Receive_transport_information;
  +       m_pSoap->transport.pSendTrtFunct = Send_transport_information; 
       }
       else
           return FAIL;
  @@ -51,10 +52,10 @@
   //Step 1 - Close 2 streams
   	//Step 2 - Possibly delete the streams
   	//Step 3 - Set function pointers in the m_Soap structure to NULL;
  -	m_Soap.transport.pGetFunct = NULL;
  -	m_Soap.transport.pSendFunct = NULL;
  -	m_Soap.transport.pGetTrtFunct = NULL;
  -	m_Soap.transport.pSendTrtFunct = NULL;
  +	m_pSoap->transport.pGetFunct = NULL;
  +	m_pSoap->transport.pSendFunct = NULL;
  +	m_pSoap->transport.pGetTrtFunct = NULL;
  +	m_pSoap->transport.pSendTrtFunct = NULL;
   }
   
   int AxisTransport::Send_bytes(const char* pSendBuffer, const void* pStream)
  @@ -84,10 +85,11 @@
   
   int AxisTransport::Send_transport_information(void* pSoapStream)
   {
  -    Ax_soapstream* pSoapStream = (Ax_soapstream*) pSoapStream;    
  -    
  +    Ax_soapstream* pSStream = (Ax_soapstream*) pSoapStream;
  +	return SUCCESS;
   }
   
   int AxisTransport::Receive_transport_information(void* pSoapStream)
   {
  +	return SUCCESS;
   }
  
  
  
  1.3       +20 -18    ws-axis/c/src/client/transport/axis/AxisTransport.h
  
  Index: AxisTransport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/AxisTransport.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AxisTransport.h	26 Sep 2003 15:02:02 -0000	1.2
  +++ AxisTransport.h	27 Sep 2003 08:33:28 -0000	1.3
  @@ -1,30 +1,32 @@
   #if !defined(_AXIS_AXIS_TRANSPORT_HPP)
   #define _AXIS_AXIS_TRANSPORT_HPP
   
  -#include "HttpTransport.hpp"
  -#include "Sender.hpp"
  -#include "Receiver.hpp"
  +#include <Packet.h>
  +
  +class Transport;
  +class Sender;
  +class Receiver;
   
   class AxisTransport
   {
  -    public:
  -        AxisTransport(Ax_soapstream* pSoap);
  -        ~AxisTransport();
  +public:
  +    AxisTransport(Ax_soapstream* pSoap);
  +    virtual ~AxisTransport();
   
  -        int OpenConnection();
  -        void CloseConnection();
  -        static int Send_bytes(const char* pSendBuffer, const void* pStream);
  -        static int Get_bytes(char* pRecvBuffer, int nBuffSize, int* pRecvSize, const void* pStream);
  -        static int Send_transport_information(void* pSoapStream); /*Ax_soapstream*/
  -        static int Receive_transport_information(void* pSoapStream);/*Ax_soapstream*/
  +    int OpenConnection();
  +    void CloseConnection();
  +    static int Send_bytes(const char* pSendBuffer, const void* pStream);
  +    static int Get_bytes(char* pRecvBuffer, int nBuffSize, int* pRecvSize, const void* pStream);
  +    static int Send_transport_information(void* pSoapStream); /*Ax_soapstream*/
  +    static int Receive_transport_information(void* pSoapStream);/*Ax_soapstream*/
   
  -    private:
  -        HttpTransport* m_pHttpTransport;
  -        Sender* m_pSender;
  -        Receiver* m_pReceiver;
  -        Ax_soapstream* m_pSoap;
  +private:
  +    Transport* m_pHttpTransport;
  +    Sender* m_pSender;
  +    Receiver* m_pReceiver;
  +    Ax_soapstream* m_pSoap;
   
  -}
  +};
   
   #endif
   
  
  
  
  1.2       +0 -3      ws-axis/c/src/client/transport/axis/Channel.hpp
  
  Index: Channel.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/Channel.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Channel.hpp	26 Sep 2003 14:24:28 -0000	1.1
  +++ Channel.hpp	27 Sep 2003 08:33:28 -0000	1.2
  @@ -126,9 +126,6 @@
   		std::string m_Error;  ///< cause of exception 
   };
   
  -
  -
  -
   class Transport;
   
   /**
  
  
  
  1.2       +1 -1      ws-axis/c/src/client/transport/axis/Receiver.cpp
  
  Index: Receiver.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/Receiver.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Receiver.cpp	26 Sep 2003 14:24:28 -0000	1.1
  +++ Receiver.cpp	27 Sep 2003 08:33:28 -0000	1.2
  @@ -84,7 +84,7 @@
   		// Get the fault message.
   		*m_pTrChannel >> repMsg;
   		#ifdef _DEBUG
  -			std::cerr << ex.GetErrorMsg() << std::endl;
  +		//	std::cerr << ex.GetErrorMsg() << std::endl;
   		#endif
   	}
   	catch(...)
  
  
  
  1.2       +1 -3      ws-axis/c/src/client/transport/axis/Transport.cpp
  
  Index: Transport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/Transport.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Transport.cpp	26 Sep 2003 14:24:28 -0000	1.1
  +++ Transport.cpp	27 Sep 2003 08:33:28 -0000	1.2
  @@ -62,10 +62,8 @@
    *
    */
   
  -#include "Platform.hpp"
   #include "Transport.hpp"
  -
  -
  +#include "Platform.hpp"
   
   Transport::Transport()
   {
  
  
  
  1.2       +1 -5      ws-axis/c/src/client/transport/axis/TransportFactory.hpp
  
  Index: TransportFactory.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/TransportFactory.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TransportFactory.hpp	26 Sep 2003 14:24:28 -0000	1.1
  +++ TransportFactory.hpp	27 Sep 2003 08:33:28 -0000	1.2
  @@ -66,10 +66,6 @@
   #if !defined(_AXIS_TRANSPORTFACTORY_HPP)
   #define _AXIS_TRANSPORTFACTORY_HPP
   
  -#include "Url.hpp"
  -
  -class Transport;
  -
   
   /**
    *	Create undeline transport for SOAP-Envelops carrier for a given URL
  @@ -82,7 +78,7 @@
    *
    */
   
  -
  +#include "Transport.hpp"
   
   class TransportFactory  
   {
  
  
  
  1.2       +6 -0      ws-axis/c/src/common/AxisConfig.h
  
  Index: AxisConfig.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/AxisConfig.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AxisConfig.h	26 Sep 2003 07:30:37 -0000	1.1
  +++ AxisConfig.h	27 Sep 2003 08:33:28 -0000	1.2
  @@ -1,3 +1,7 @@
  +#if !defined(__AXIS_AXISCONFIG_H_INCLUDED__)
  +#define __AXIS_AXISCONFIG_H_INCLUDED__
  +
  +
   #ifdef WIN32
   #ifdef AXIS_APACHE1_3
   #define WSDDFILEPATH "C:/Program Files/Apache Group/Apache/Axis/conf/server.wsdd"
  @@ -10,4 +14,6 @@
   #else
   #define WSDDFILEPATH "/usr/local/apache/Axis/conf/server.wsdd"
   #endif
  +#endif
  +
   #endif
  
  
  
  1.9       +1 -1      ws-axis/c/src/common/AxisException.cpp
  
  Index: AxisException.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/AxisException.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- AxisException.cpp	26 Sep 2003 14:05:09 -0000	1.8
  +++ AxisException.cpp	27 Sep 2003 08:33:28 -0000	1.9
  @@ -129,7 +129,7 @@
   string AxisException::getMessage(int e)
   {
       SoapFault* objSoap = SoapFault::getSoapFault(e);
  -    char* sMessage = objSoap->getSoapString();
  +    const char* sMessage = objSoap->getSoapString();
       if (sMessage == NULL)
       {
           switch(e)
  
  
  
  1.4       +2 -1      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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SimpleAxisServer.cpp	22 Sep 2003 05:12:22 -0000	1.3
  +++ SimpleAxisServer.cpp	27 Sep 2003 08:33:28 -0000	1.4
  @@ -13,6 +13,7 @@
   
   //#include <stdio.h>
   #include "../../common/Packet.h"
  +#include "../../common/AxisConfig.h"
   #include "ServerHelper.h"
   
   #define MAXPENDING 5    /* Maximum outstanding connection requests */
  @@ -45,7 +46,7 @@
   	//printf("soap request :\n %s\n", echoBuffer);
   //	wprintf(L"soap request :\n %s\n", ip);
   
  -	initialize_module(1);
  +	initialize_module(1, WSDDFILEPATH);
   	
   	process_request(str);	
   	
  
  
  
  1.8       +1 -1      ws-axis/c/src/soap/SoapFault.cpp
  
  Index: SoapFault.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/SoapFault.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SoapFault.cpp	26 Sep 2003 14:05:09 -0000	1.7
  +++ SoapFault.cpp	27 Sep 2003 08:33:28 -0000	1.8
  @@ -176,7 +176,7 @@
   	}
   }
   
  -char* SoapFault::getSoapString()
  +const char* SoapFault::getSoapString()
   {
       return m_sFaultstring.c_str(); 
   }
  
  
  
  1.7       +1 -1      ws-axis/c/src/soap/SoapFault.h
  
  Index: SoapFault.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/SoapFault.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SoapFault.h	26 Sep 2003 14:05:09 -0000	1.6
  +++ SoapFault.h	27 Sep 2003 08:33:28 -0000	1.7
  @@ -82,7 +82,7 @@
   public:
   	static SoapFault* getSoapFault(int);
   	static void initialize();
  -    char* getSoapString();	
  +    const char* getSoapString();	
   	int serialize(SoapSerializer& pSZ);	
   	//int serialize(string&);	
   	virtual ~SoapFault();
  
  
  
  1.5       +69 -4     ws-axis/c/vc/client/samples/Calculator/Calculator.dsp
  
  Index: Calculator.dsp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/vc/client/samples/Calculator/Calculator.dsp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Calculator.dsp	26 Sep 2003 13:49:45 -0000	1.4
  +++ Calculator.dsp	27 Sep 2003 08:33:29 -0000	1.5
  @@ -41,7 +41,8 @@
   # PROP Intermediate_Dir "Release"
   # PROP Target_Dir ""
   # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /c
  -# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /c
  +# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /I "../../../../src/common" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
  +# SUBTRACT CPP /YX /Yc /Yu
   # ADD BASE RSC /l 0x409 /d "NDEBUG"
   # ADD RSC /l 0x409 /d "NDEBUG"
   BSC32=bscmake.exe
  @@ -65,8 +66,8 @@
   # 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" /I "../../../../src/common" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /FD /GZ /c
  -# SUBTRACT CPP /YX /Yc /Yu
  +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../../../include" /I "../../../../src/common" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
  +# SUBTRACT CPP /Fr /YX /Yc /Yu
   # ADD BASE RSC /l 0x409 /d "_DEBUG"
   # ADD RSC /l 0x409 /d "_DEBUG"
   BSC32=bscmake.exe
  @@ -87,6 +88,10 @@
   # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
   # Begin Source File
   
  +SOURCE=..\..\..\..\src\client\transport\axis\AxisTransport.cpp
  +# End Source File
  +# Begin Source File
  +
   SOURCE=..\..\..\..\src\client\samples\Calculator\CalcClient.cpp
   # End Source File
   # Begin Source File
  @@ -99,11 +104,35 @@
   # End Source File
   # Begin Source File
   
  +SOURCE=..\..\..\..\src\client\transport\axis\Channel.cpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\HttpTransport.cpp
  +# End Source File
  +# Begin Source File
  +
   SOURCE=..\..\..\..\src\client\samples\Calculator\Point.cpp
   # End Source File
   # Begin Source File
   
  -SOURCE=..\..\..\..\src\client\Transporter.c
  +SOURCE=..\..\..\..\src\client\transport\axis\Receiver.cpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Sender.cpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Transport.cpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\TransportFactory.cpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Url.cpp
   # End Source File
   # End Group
   # Begin Group "Header Files"
  @@ -111,6 +140,10 @@
   # PROP Default_Filter "h;hpp;hxx;hm;inl"
   # Begin Source File
   
  +SOURCE=..\..\..\..\src\client\transport\axis\AxisTransport.h
  +# End Source File
  +# Begin Source File
  +
   SOURCE=..\..\..\..\src\client\samples\Calculator\Calculator.h
   # End Source File
   # Begin Source File
  @@ -119,7 +152,39 @@
   # End Source File
   # Begin Source File
   
  +SOURCE=..\..\..\..\src\client\transport\axis\Channel.hpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\HttpTransport.hpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Platform.hpp
  +# End Source File
  +# Begin Source File
  +
   SOURCE=..\..\..\..\src\client\samples\Calculator\Point.h
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Receiver.hpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Sender.hpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Transport.hpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\TransportFactory.hpp
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\..\..\src\client\transport\axis\Url.hpp
   # End Source File
   # End Group
   # Begin Group "Resource Files"
  
  
  
  1.21      +12 -0     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.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- Common.dsp	18 Sep 2003 06:28:56 -0000	1.20
  +++ Common.dsp	27 Sep 2003 08:33:29 -0000	1.21
  @@ -91,6 +91,10 @@
   # End Source File
   # Begin Source File
   
  +SOURCE=..\..\src\common\AxisException.cpp
  +# End Source File
  +# Begin Source File
  +
   SOURCE=..\..\src\common\AxisTime.cpp
   # End Source File
   # Begin Source File
  @@ -128,6 +132,14 @@
   # Begin Source File
   
   SOURCE=..\..\src\common\ArrayBean.h
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\src\common\AxisConfig.h
  +# End Source File
  +# Begin Source File
  +
  +SOURCE=..\..\src\common\AxisException.h
   # End Source File
   # Begin Source File
   
  
  
  
  1.8       +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.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Apache1_3.dsp	12 Sep 2003 11:29:23 -0000	1.7
  +++ Apache1_3.dsp	27 Sep 2003 08:33:29 -0000	1.8
  @@ -81,7 +81,7 @@
   # 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 /nologo /dll /debug /machine:I386 /pdbtype:sept
  -# ADD LINK32 Common_D.lib Soap_D.lib wsdd_D.lib Engine_D.lib xerces-c_2D.lib ApacheCore.lib /nologo /dll /debug /machine:I386 /out:"E:\Program Files\Apache Group\Apache\modules\mod_axis.dll" /pdbtype:sept /libpath:"../../../lib/win32/axis" /libpath:"../../../lib/win32/xercesc" /libpath:"../../../lib/win32/apache1_3"
  +# ADD LINK32 Common_D.lib Soap_D.lib wsdd_D.lib Engine_D.lib xerces-c_2D.lib ApacheCore.lib /nologo /dll /debug /machine:I386 /out:"../../release/win32/mod_axis.dll" /pdbtype:sept /libpath:"../../../lib/win32/axis" /libpath:"../../../lib/win32/xercesc" /libpath:"../../../lib/win32/apache1_3"
   # SUBTRACT LINK32 /profile
   
   !ENDIF