Return-Path: Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 97636 invoked by uid 500); 17 Jul 2003 07:16:12 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 97624 invoked by uid 500); 17 Jul 2003 07:16:12 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 17 Jul 2003 07:16:11 -0000 Message-ID: <20030717071611.60958.qmail@icarus.apache.org> From: damitha@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/c/src/server/handlers/custom/simpleauthhandler SimpleAuthorizationHandler.cpp SimpleAuthorizationHandler.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N damitha 2003/07/17 00:16:11 Modified: c/src/server/handlers/custom/simpleauthhandler SimpleAuthorizationHandler.cpp SimpleAuthorizationHandler.h Log: Revision Changes Path 1.2 +3 -3 xml-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.cpp Index: SimpleAuthorizationHandler.cpp =================================================================== RCS file: /home/cvs/xml-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SimpleAuthorizationHandler.cpp 7 Jul 2003 13:30:05 -0000 1.1 +++ SimpleAuthorizationHandler.cpp 17 Jul 2003 07:16:10 -0000 1.2 @@ -23,11 +23,11 @@ } // Implementation of BasicHandler interface. -int SimpleAuthorizationHandler::Invoke(MessageData* md) +int SimpleAuthorizationHandler::Invoke(IMessageData* md) { try { - DEBUG1("SimpleAuthorizationHandler::Invoke(MessageData* md)"); + DEBUG1("SimpleAuthorizationHandler::Invoke(IMessageData* md)"); string sValue = GetOption("AllowByDefault"); DEBUG2("sValue :", sValue); int intIsAllowed = atoi(sValue.c_str()); @@ -76,7 +76,7 @@ } } -void SimpleAuthorizationHandler::OnFault(MessageData* mc) +void SimpleAuthorizationHandler::OnFault(IMessageData* mc) { } 1.2 +3 -3 xml-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.h Index: SimpleAuthorizationHandler.h =================================================================== RCS file: /home/cvs/xml-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SimpleAuthorizationHandler.h 7 Jul 2003 13:30:05 -0000 1.1 +++ SimpleAuthorizationHandler.h 17 Jul 2003 07:16:10 -0000 1.2 @@ -1,4 +1,4 @@ -#include "../../../../common/MessageData.h" +#include "../../../../common/IMessageData.h" #include "../../../../wsdd/WSDDHandler.h" #include "../../../../wsdd/WSDDService.h" #include "../../../../common/Handler.h" @@ -10,8 +10,8 @@ SimpleAuthorizationHandler(); virtual ~SimpleAuthorizationHandler(); - int Invoke(MessageData* pMsg); - void OnFault(MessageData* pMsg); + int Invoke(IMessageData* pMsg); + void OnFault(IMessageData* pMsg); string GetOption(string sArg); void SetOption(string sOption, string Value); void SetOptionList(map* OptionList);