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/08/15 12:00:10 UTC

cvs commit: xml-axis/c/src/server/handlers/custom/echoStringHeaderHandler ESHHandler.h ESHHandler.cpp

roshan      2003/08/15 03:00:10

  Modified:    c/src/server/handlers/custom/echoStringHeaderHandler
                        ESHHandler.h ESHHandler.cpp
  Log:
  changed the handler to reflect new changes
  
  Revision  Changes    Path
  1.2       +2 -0      xml-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.h
  
  Index: ESHHandler.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ESHHandler.h	5 Aug 2003 12:50:37 -0000	1.1
  +++ ESHHandler.h	15 Aug 2003 10:00:10 -0000	1.2
  @@ -77,6 +77,8 @@
   class ESHHandler : public Handler
   {
   public:
  +	int Fini();
  +	int Init();
   	void OnFault(IMessageData* pIMsg);
   	int Invoke(IMessageData* pIMsg);
   	void SetOptionList(map<string, string>* OptionList);
  
  
  
  1.2       +14 -0     xml-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.cpp
  
  Index: ESHHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ESHHandler.cpp	5 Aug 2003 12:50:37 -0000	1.1
  +++ ESHHandler.cpp	15 Aug 2003 10:00:10 -0000	1.2
  @@ -152,3 +152,17 @@
   {
   
   }
  +
  +int ESHHandler::Init()
  +{
  +	//do any initialization, resetting of values
  +
  +	return SUCCESS;
  +}
  +
  +int ESHHandler::Fini()
  +{
  +	//do any finalizatoin
  +
  +	return SUCCESS;
  +}