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/23 09:07:45 UTC

cvs commit: ws-axis/c/include/axis/common IDeployerUtils.h

roshan      2003/10/23 00:07:45

  Modified:    c/include/axis/common IDeployerUtils.h
  Log:
  changed method signature
  
  Revision  Changes    Path
  1.3       +3 -3      ws-axis/c/include/axis/common/IDeployerUtils.h
  
  Index: IDeployerUtils.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/common/IDeployerUtils.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IDeployerUtils.h	22 Oct 2003 11:37:08 -0000	1.2
  +++ IDeployerUtils.h	23 Oct 2003 07:07:45 -0000	1.3
  @@ -78,9 +78,9 @@
   class IDeployerUtils
   {
   public:
  -	virtual int UpdateWSDD(const AxisChar* sWSDDNew, string sServiceName, string sDllPath, Axis_ArrayTag inArray) =0;
  -	virtual int unDeploy(const AxisChar* sWSDDNew, string sServiceName) = 0;
  -	virtual int deploy(const AxisChar *sWSDDNew, string sServiceName, string sDllPath, Axis_ArrayTag inArray) = 0;
  +	virtual int UpdateWSDD() =0;
  +	virtual int unDeploy(string sServiceName) = 0;
  +	virtual int deploy(string sServiceName, string sDllPath, Axis_ArrayTag inArray) = 0;
   	virtual ~IDeployerUtils() {};
   };