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 05:28:44 UTC

cvs commit: ws-axis/c/src/wsdd WSDDDeployment.cpp WSDDDocument.cpp WSDDHandler.cpp WSDDKeywords.cpp WSDDService.cpp WSDDTransport.cpp

susantha    2003/10/19 20:28:44

  Modified:    c/src/wsdd WSDDDeployment.cpp WSDDDocument.cpp
                        WSDDHandler.cpp WSDDKeywords.cpp WSDDService.cpp
                        WSDDTransport.cpp
  Log:
  updated source files to use new  include files folder structure
  
  Revision  Changes    Path
  1.14      +4 -4      ws-axis/c/src/wsdd/WSDDDeployment.cpp
  
  Index: WSDDDeployment.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDDeployment.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- WSDDDeployment.cpp	19 Oct 2003 17:06:07 -0000	1.13
  +++ WSDDDeployment.cpp	20 Oct 2003 03:28:44 -0000	1.14
  @@ -66,10 +66,10 @@
   //
   //////////////////////////////////////////////////////////////////////
   
  -#include "WSDDDeployment.h"
  -#include "WSDDDocument.h"
  -#include "../common/GDefine.h"
  -#include "../common/AxisConfig.h"
  +#include <axis/wsdd/WSDDDeployment.h>
  +#include <axis/wsdd/WSDDDocument.h>
  +#include <axis/common/GDefine.h>
  +#include <axis/common/AxisConfig.h>
   
   extern unsigned char chEBuf[1024];
   //////////////////////////////////////////////////////////////////////
  
  
  
  1.20      +3 -3      ws-axis/c/src/wsdd/WSDDDocument.cpp
  
  Index: WSDDDocument.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDDocument.cpp,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- WSDDDocument.cpp	15 Oct 2003 06:11:30 -0000	1.19
  +++ WSDDDocument.cpp	20 Oct 2003 03:28:44 -0000	1.20
  @@ -62,10 +62,10 @@
    *
    */
   
  -#include "WSDDDocument.h"
  -#include "WSDDKeywords.h"
  +#include <axis/wsdd/WSDDDocument.h>
  +#include <axis/wsdd/WSDDKeywords.h>
   #include <string>
  -#include "../common/AxisTrace.h"
  +#include <axis/common/AxisTrace.h>
   
   WSDDDocument::WSDDDocument()
   {
  
  
  
  1.8       +1 -1      ws-axis/c/src/wsdd/WSDDHandler.cpp
  
  Index: WSDDHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDHandler.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- WSDDHandler.cpp	5 Sep 2003 10:48:51 -0000	1.7
  +++ WSDDHandler.cpp	20 Oct 2003 03:28:44 -0000	1.8
  @@ -65,7 +65,7 @@
   //
   //////////////////////////////////////////////////////////////////////
   
  -#include "WSDDHandler.h"
  +#include <axis/wsdd/WSDDHandler.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.5       +2 -2      ws-axis/c/src/wsdd/WSDDKeywords.cpp
  
  Index: WSDDKeywords.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDKeywords.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- WSDDKeywords.cpp	15 Oct 2003 06:11:30 -0000	1.4
  +++ WSDDKeywords.cpp	20 Oct 2003 03:28:44 -0000	1.5
  @@ -2,8 +2,8 @@
   //
   //////////////////////////////////////////////////////////////////////
   
  -#include "WSDDKeywords.h"
  -#include "../common/AxisUtils.h"
  +#include <axis/wsdd/WSDDKeywords.h>
  +#include <axis/common/AxisUtils.h>
   
   #define __TRC(X) AxisUtils::ToAxisXMLCh(X)
   
  
  
  
  1.12      +32 -3     ws-axis/c/src/wsdd/WSDDService.cpp
  
  Index: WSDDService.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDService.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- WSDDService.cpp	10 Oct 2003 12:47:03 -0000	1.11
  +++ WSDDService.cpp	20 Oct 2003 03:28:44 -0000	1.12
  @@ -65,8 +65,8 @@
   //
   //////////////////////////////////////////////////////////////////////
   
  -#include "WSDDService.h"
  -#include "../common/AxisTrace.h"
  +#include <axis/wsdd/WSDDService.h>
  +#include <axis/common/AxisTrace.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  @@ -76,6 +76,7 @@
   {
   	m_RequestHandlers = NULL;
   	m_ResponseHandlers = NULL;
  +	m_Provider = UNKNOWN_PROVIDER;
   }
   
   WSDDService::~WSDDService()
  @@ -105,7 +106,35 @@
   
   void WSDDService::SetProvider(const AxisChar* sProvider)
   {
  -	m_sProvider = sProvider;
  +	if (0 == strcmp(sProvider, "C:RPC"))
  +	{
  +		m_Provider = C_RPC_PROVIDER;
  +	}
  +	else if (0 == strcmp(sProvider, "CPP:RPC"))
  +	{
  +		m_Provider = CPP_RPC_PROVIDER;
  +	}
  +	else if (0 == strcmp(sProvider, "C:DOCUMENT"))
  +	{
  +		m_Provider = C_DOC_PROVIDER;
  +	}
  +	else if (0 == strcmp(sProvider, "CPP:DOCUMENT"))
  +	{
  +		m_Provider = CPP_DOC_PROVIDER;
  +	}
  +	else if (0 == strcmp(sProvider, "COM"))
  +	{
  +		m_Provider = COM_PROVIDER;
  +	}
  +	else
  +	{
  +		m_Provider = UNKNOWN_PROVIDER;
  +	}
  +}
  +
  +PROVIDERTYPE WSDDService::GetProvider()
  +{
  +	return m_Provider;
   }
   
   const AxisChar* WSDDService::GetServiceName() const
  
  
  
  1.5       +1 -1      ws-axis/c/src/wsdd/WSDDTransport.cpp
  
  Index: WSDDTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDTransport.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- WSDDTransport.cpp	15 Oct 2003 06:11:30 -0000	1.4
  +++ WSDDTransport.cpp	20 Oct 2003 03:28:44 -0000	1.5
  @@ -65,7 +65,7 @@
   //
   //////////////////////////////////////////////////////////////////////
   
  -#include "WSDDTransport.h"
  +#include <axis/wsdd/WSDDTransport.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction