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 ro...@apache.org on 2003/10/16 13:54:28 UTC

cvs commit: ws-axis/c/src/common MessageData.h MessageData.cpp IMessageData.h

roshan      2003/10/16 04:54:28

  Modified:    c/src/common MessageData.h MessageData.cpp IMessageData.h
  Log:
  added the method "getWSDDDeployment"
  
  Revision  Changes    Path
  1.12      +1 -0      ws-axis/c/src/common/MessageData.h
  
  Index: MessageData.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/MessageData.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- MessageData.h	22 Sep 2003 05:12:22 -0000	1.11
  +++ MessageData.h	16 Oct 2003 11:54:27 -0000	1.12
  @@ -112,6 +112,7 @@
     const WSDDService* m_Service;
   
   private:
  +	void getWSDDDeployment(IDeployerUtils** pIDeployerUtils);
   	bool m_bPastPivotState;
   	map <string, string> m_Properties;
   	static string m_sBlankPropertyValue;
  
  
  
  1.12      +8 -0      ws-axis/c/src/common/MessageData.cpp
  
  Index: MessageData.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/MessageData.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- MessageData.cpp	15 Oct 2003 06:11:28 -0000	1.11
  +++ MessageData.cpp	16 Oct 2003 11:54:27 -0000	1.12
  @@ -66,11 +66,14 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "MessageData.h"
  +#include "IDeployerUtils.h"
  +#include "../wsdd/WSDDDeployment.h"
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
   //////////////////////////////////////////////////////////////////////
   
   string MessageData::m_sBlankPropertyValue="";
  +extern WSDDDeployment* g_pWSDDDeployment;
   
   MessageData::MessageData()
   {
  @@ -181,4 +184,9 @@
   	
   
   	return m_sBlankPropertyValue;
  +}
  +
  +void MessageData::getWSDDDeployment(IDeployerUtils **pIDeployerUtils)
  +{
  +	*pIDeployerUtils= static_cast<IDeployerUtils*>(g_pWSDDDeployment);
   }
  
  
  
  1.9       +3 -0      ws-axis/c/src/common/IMessageData.h
  
  Index: IMessageData.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/IMessageData.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- IMessageData.h	15 Oct 2003 06:11:28 -0000	1.8
  +++ IMessageData.h	16 Oct 2003 11:54:27 -0000	1.9
  @@ -75,6 +75,7 @@
   //class ISoapSerializer;
   class IHandlerSoapSerializer;
   class IWrapperSoapSerializer;
  +class IDeployerUtils;
   
   class IMessageData
   {
  @@ -93,6 +94,8 @@
   
   	virtual void getSoapDeSerializer(IWrapperSoapDeSerializer** pIWrapperSoapDeSerializer)=0;
   	virtual void getSoapDeSerializer(IHandlerSoapDeSerializer** pIHandlerSoapDeSerializer)=0;
  +
  +	virtual void getWSDDDeployment(IDeployerUtils** pIDeployerUtils) = 0;
   
   	virtual void SetUserName(string& m_sUserName)=0;
   	virtual string& GetUserName()=0;