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 da...@apache.org on 2003/10/02 08:06:16 UTC

cvs commit: ws-axis/c/src/server/handlers/transport/testhandler2 Makefile.am autogen.sh configure.ac runconfig Makefile TestTransport.cpp TestTransport.h

damitha     2003/10/01 23:06:16

  Modified:    c/src/server/handlers/custom/echoStringHeaderHandler
                        ESHHandler.cpp
               c/src/server/handlers/custom/loghandler LogHandler.cpp
                        LogHandler.h Makefile
               c/src/server/handlers/custom/simpleauthhandler Makefile
                        SimpleAuthorizationHandler.cpp
                        SimpleAuthorizationHandler.h
               c/src/server/handlers/global/testhandler1 Makefile
                        TestGlobal.cpp
               c/src/server/handlers/transport/testhandler2 Makefile
                        TestTransport.cpp TestTransport.h
  Added:       c/src/server/handlers/custom/echoStringHeaderHandler
                        Makefile.am autogen.sh configure.ac runconfig
               c/src/server/handlers/custom/loghandler Makefile.am
                        autogen.sh configure.ac runconfig
               c/src/server/handlers/custom/simpleauthhandler Makefile.am
                        autogen.sh configure.ac runconfig
               c/src/server/handlers/global/testhandler1 Makefile.am
                        autogen.sh configure.ac runconfig
               c/src/server/handlers/transport/testhandler2 Makefile.am
                        autogen.sh configure.ac runconfig
  Log:
  log: changed sample handlers so that they use GNU auto tools to build instead of
  earlier Makefile set.
  
  Revision  Changes    Path
  1.3       +13 -6     ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.cpp
  
  Index: ESHHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/ESHHandler.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ESHHandler.cpp	15 Aug 2003 10:00:10 -0000	1.2
  +++ ESHHandler.cpp	2 Oct 2003 06:06:15 -0000	1.3
  @@ -66,9 +66,9 @@
   //////////////////////////////////////////////////////////////////////
   
   #include "ESHHandler.h"
  -#include "../../../../common/GDefine.h"
  -#include "../../../../common/IHandlerSoapSerializer.h"
  -#include "../../../../common/IHandlerSoapDeSerializer.h"
  +#include <GDefine.h>
  +#include <IHandlerSoapSerializer.h>
  +#include <IHandlerSoapDeSerializer.h>
   #include "../../../../soap/HeaderBlock.h"
   #include "../../../../soap/SoapHeader.h"
   #include "../../../../soap/BasicNode.h"
  @@ -105,6 +105,8 @@
   
   int ESHHandler::Invoke(IMessageData *pIMsg)
   {
  +    string strTemp;
  +    AxisChar* sHeaderVal;
   	if(pIMsg->isPastPivot()) {
   		//this is a response
   		IHandlerSoapSerializer* pISZ;
  @@ -116,8 +118,12 @@
   		pIHeaderBlock->setUri("http://soapinterop.org/echoheader/");
   		pIHeaderBlock->setPrefix("m");
   
  -		string sHeaderVal= pIMsg->getProperty(string("EchoStringHeaderHandlerPr1.id"));
  -		sHeaderVal+= " After Append by Handler";
  +        strTemp = "EchoStringHeaderHandlerPr1.id";
  +        size_t nSize = strlen(pIMsg->getProperty(strTemp).c_str()) + 30;
  +        sHeaderVal = malloc(nSize);
  +		strcpy(sHeaderVal, pIMsg->getProperty(strTemp).c_str());
  +        realloc(sHeaderVal, 30);
  +		strcpy(sHeaderVal," After Append by Handler");
   		pIHeaderBlock->setValue(sHeaderVal);
   
   		BasicNode* pBasicNode = pIHeaderBlock->createChild(CHARACTER_NODE);
  @@ -140,7 +146,8 @@
   			sHeaderValue= pBasicNode->getValue();
   		}
   
  -		pIMsg->setProperty(string("EchoStringHeaderHandlerPr1.id"), sHeaderValue);
  +        strTemp = "EchoStringHeaderHandlerPr1.id";
  +		pIMsg->setProperty(strTemp, sHeaderValue);
   		//pIMsg->setProperty(string("EchoSt"), sHeaderValue);
   		
   	}
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libeshhandler.la
  SUBDIRS =
  AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  libeshhandler_la_SOURCES = ESHHandler.cpp EchoStringHeaderHandler.cpp 
  
  libeshhandler_la_LIBADD   =  -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/autogen.sh
  
  Index: autogen.sh
  ===================================================================
  #! /bin/sh
  
  # $Id: autogen.sh,v 1.1 2003/10/02 06:06:15 damitha Exp $
  #
  # Copyright (c) 2002  Daniel Elstner  <da...@gmx.net>
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License VERSION 2 as
  # published by the Free Software Foundation.  You are not allowed to
  # use any other version of the license; unless you got the explicit
  # permission from the author to do so.
  #
  # This program is distributed in the hope that it will be useful,
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  # GNU General Public License for more details.
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  
  
  dir=`echo "$0" | sed 's,[^/]*$,,'`
  test "x${dir}" = "x" && dir='.'
  
  if test "x`cd "${dir}" 2>/dev/null && pwd`" != "x`pwd`"
  then
      echo "This script must be executed directly from the source directory."
      exit 1
  fi
  
  rm -f config.cache acconfig.h
  
  echo "- libtoolize."		&& \
  libtoolize --force		&& \
  echo "- aclocal."		&& \
  aclocal				&& \
  echo "- autoconf."		&& \
  autoconf			&& \
  echo "- autoheader."		&& \
  autoheader			&& \
  echo "- automake."		&& \
  automake --add-missing --gnu	&&
  #echo				&& \
  #./configure "$@"		&& exit 0
  
  exit 1
  
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/configure.ac
  
  Index: configure.ac
  ===================================================================
  AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
  AM_INIT_AUTOMAKE(0.3)
  AM_CONFIG_HEADER(config.h)
  
  AC_PROG_CC
  AC_PROG_CXX
  AC_PROG_INSTALL
  AC_PROG_LIBTOOL
  AC_OUTPUT(Makefile)
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/echoStringHeaderHandler/runconfig
  
  Index: runconfig
  ===================================================================
  #!/bin/bash
  configure --libdir=$AXISCPP_HOME/src/server/handlers/custom/echoStringHeaderHandler/lib
  
  
  
  1.6       +17 -1     ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.cpp
  
  Index: LogHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- LogHandler.cpp	9 Sep 2003 12:53:01 -0000	1.5
  +++ LogHandler.cpp	2 Oct 2003 06:06:16 -0000	1.6
  @@ -62,9 +62,11 @@
   #include "LogHandler.h"
   #include "../../../../soap/SoapDeSerializer.h"
   #include "../../../../soap/SoapSerializer.h"
  +#include <AxisTrace.h>
  +#include <AxisException.h>
   #include <fstream>
   #include <string>
  -//#include "../../../../common/AxisTrace.h"
  +
   
   using namespace std;
   
  @@ -154,3 +156,17 @@
   {
      m_Option = OptionList;
   }
  +
  +int LogHandler::Init()
  +{
  +	//do any initialization, resetting of values
  +
  +	return SUCCESS;
  +}
  +
  +int LogHandler::Fini()
  +{
  +	//do any finalizatoin
  +
  +	return SUCCESS;
  +}
  \ No newline at end of file
  
  
  
  1.4       +2 -0      ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.h
  
  Index: LogHandler.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/loghandler/LogHandler.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- LogHandler.h	4 Sep 2003 06:51:40 -0000	1.3
  +++ LogHandler.h	2 Oct 2003 06:06:16 -0000	1.4
  @@ -73,6 +73,8 @@
   	virtual ~LogHandler();
     int Invoke(IMessageData* pMsg);
     void OnFault(IMessageData* pMsg);
  +  int Init();
  +  int Fini();	
   
     string GetOption(string sArg);
     void SetOption(string sOption, string Value);
  
  
  
  1.2       +536 -32   ws-axis/c/src/server/handlers/custom/loghandler/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/loghandler/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	7 Jul 2003 13:30:05 -0000	1.1
  +++ Makefile	2 Oct 2003 06:06:16 -0000	1.2
  @@ -1,34 +1,538 @@
  -# Makefile for axishandlers
  -#
  -#
  -# Modify the TOPDIR variable to point to the top of the
  -# directory tree where the Axis_Lib dir may be found.
  -#
  -
  -BASE_PATH = ../../../../..
  -include ../../../../../inc.mk
  -
  -PACKAGE_SRCS = LogHandler.cpp \
  -		LogAccessCount.cpp
  -
  -PACKAGE_OBJS = $(PACKAGE_SRCS:%.cpp=$(AX_OBJ_DIR_HANDLERS)/custom/loghandler/%.o)
  -$(AX_OBJ_DIR_HANDLERS)/custom/loghandler/%.o: %.cpp
  -	$(COMPILE.gcc) -o $@ $<
  -	@touch $(AX_OBJ_DIR_HANDLERS)/custom/loghandler/timestamp
  -all: MAKE_LIB
  -
  -MAKE_LIB:OBJS
  -	@echo "making libcount.so shared library" ;
  -	$(AX_SO) $(AX_SO_HANDLERS)/custom/loghandler/libcount.so $(AX_OBJ_DIR_HANDLERS)/custom/loghandler/*.o -ldl -lstdc++
  -
  -#$(AX_OBJ_DIR_HANDLERS)/timestamp objects:
  -#	@( cd $(AX_SRC_DIR) ; $(MAKE) -$(MAKEFLAGS) )
  -
  -OBJS: $(PACKAGE_OBJS)
  -
  -
  -clean:
  -	-@rm -rf $(AX_OBJ_DIR)/server/handlers/custom/loghandler/*
  -	-@rm -rf $(OBJS) *~
  +# Makefile.in generated by automake 1.6.3 from Makefile.am.
  +# Makefile.  Generated from Makefile.in by configure.
   
  +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
  +# Free Software Foundation, Inc.
  +# This Makefile.in is free software; the Free Software Foundation
  +# gives unlimited permission to copy and/or distribute it,
  +# with or without modifications, as long as this notice is preserved.
   
  +# This program is distributed in the hope that it will be useful,
  +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  +# PARTICULAR PURPOSE.
  +
  +
  +SHELL = /bin/sh
  +
  +srcdir = .
  +top_srcdir = .
  +
  +prefix = /usr/local
  +exec_prefix = ${prefix}
  +
  +bindir = ${exec_prefix}/bin
  +sbindir = ${exec_prefix}/sbin
  +libexecdir = ${exec_prefix}/libexec
  +datadir = ${prefix}/share
  +sysconfdir = ${prefix}/etc
  +sharedstatedir = ${prefix}/com
  +localstatedir = ${prefix}/var
  +libdir = /home/damitha/projects/axiscpp/c/src/server/handlers/custom/loghandler/lib
  +infodir = ${prefix}/info
  +mandir = ${prefix}/man
  +includedir = ${prefix}/include
  +oldincludedir = /usr/include
  +pkgdatadir = $(datadir)/full-package-name
  +pkglibdir = $(libdir)/full-package-name
  +pkgincludedir = $(includedir)/full-package-name
  +top_builddir = .
  +
  +ACLOCAL = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/loghandler/missing --run aclocal-1.6
  +AUTOCONF = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/loghandler/missing --run autoconf
  +AUTOMAKE = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/loghandler/missing --run automake-1.6
  +AUTOHEADER = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/loghandler/missing --run autoheader
  +
  +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  +INSTALL = /usr/bin/install -c
  +INSTALL_PROGRAM = ${INSTALL}
  +INSTALL_DATA = ${INSTALL} -m 644
  +install_sh_DATA = $(install_sh) -c -m 644
  +install_sh_PROGRAM = $(install_sh) -c
  +install_sh_SCRIPT = $(install_sh) -c
  +INSTALL_SCRIPT = ${INSTALL}
  +INSTALL_HEADER = $(INSTALL_DATA)
  +transform = s,x,x,
  +NORMAL_INSTALL = :
  +PRE_INSTALL = :
  +POST_INSTALL = :
  +NORMAL_UNINSTALL = :
  +PRE_UNINSTALL = :
  +POST_UNINSTALL = :
  +host_alias = 
  +host_triplet = i686-pc-linux-gnu
  +
  +EXEEXT = 
  +OBJEXT = o
  +PATH_SEPARATOR = :
  +AMTAR = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/loghandler/missing --run tar
  +AS = @AS@
  +AWK = gawk
  +CC = gcc
  +CXX = g++
  +DEPDIR = .deps
  +DLLTOOL = @DLLTOOL@
  +ECHO = echo
  +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
  +LIBTOOL = $(SHELL) $(top_builddir)/libtool
  +LN_S = ln -s
  +OBJDUMP = @OBJDUMP@
  +PACKAGE = full-package-name
  +RANLIB = ranlib
  +STRIP = strip
  +VERSION = VERSION
  +am__include = include
  +am__quote = 
  +install_sh = /home/damitha/projects/axiscpp/c/src/server/handlers/custom/loghandler/install-sh
  +lib_LTLIBRARIES = libloghandler.la
  +SUBDIRS = 
  +AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  +libloghandler_la_SOURCES = LogAccessCount.cpp LogHandler.cpp
  +
  +libloghandler_la_LIBADD = -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.a
  +INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  +subdir = .
  +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  +CONFIG_HEADER = config.h
  +CONFIG_CLEAN_FILES =
  +LTLIBRARIES = $(lib_LTLIBRARIES)
  +
  +libloghandler_la_LDFLAGS =
  +libloghandler_la_DEPENDENCIES = $(AXISCPP_HOME)/release/libaxiscpp_mod.a
  +am_libloghandler_la_OBJECTS = LogAccessCount.lo LogHandler.lo
  +libloghandler_la_OBJECTS = $(am_libloghandler_la_OBJECTS)
  +
  +DEFS = -DHAVE_CONFIG_H
  +DEFAULT_INCLUDES =  -I. -I$(srcdir) -I.
  +CPPFLAGS = 
  +LDFLAGS = 
  +LIBS = 
  +depcomp = $(SHELL) $(top_srcdir)/depcomp
  +am__depfiles_maybe = depfiles
  +DEP_FILES = ./$(DEPDIR)/LogAccessCount.Plo \
  +	./$(DEPDIR)/LogHandler.Plo
  +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  +	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  +LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
  +	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  +	$(AM_CXXFLAGS) $(CXXFLAGS)
  +CXXLD = $(CXX)
  +CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
  +	$(AM_LDFLAGS) $(LDFLAGS) -o $@
  +CXXFLAGS = -g -O2
  +DIST_SOURCES = $(libloghandler_la_SOURCES)
  +
  +RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
  +	uninstall-info-recursive all-recursive install-data-recursive \
  +	install-exec-recursive installdirs-recursive install-recursive \
  +	uninstall-recursive check-recursive installcheck-recursive
  +DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
  +	Makefile.in NEWS aclocal.m4 config.guess config.h.in config.sub \
  +	configure configure.ac depcomp install-sh ltmain.sh missing \
  +	mkinstalldirs
  +DIST_SUBDIRS = $(SUBDIRS)
  +SOURCES = $(libloghandler_la_SOURCES)
  +
  +all: config.h
  +	$(MAKE) $(AM_MAKEFLAGS) all-recursive
  +
  +.SUFFIXES:
  +.SUFFIXES: .cpp .lo .o .obj
  +
  +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  + configure.lineno
  +$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
  +	cd $(top_srcdir) && \
  +	  $(AUTOMAKE) --gnu  Makefile
  +Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
  +	cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
  +
  +$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  +	$(SHELL) ./config.status --recheck
  +$(srcdir)/configure:  $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
  +	cd $(srcdir) && $(AUTOCONF)
  +
  +$(ACLOCAL_M4):  configure.ac 
  +	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  +
  +config.h: stamp-h1
  +	@if test ! -f $@; then \
  +	  rm -f stamp-h1; \
  +	  $(MAKE) stamp-h1; \
  +	else :; fi
  +
  +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  +	@rm -f stamp-h1
  +	cd $(top_builddir) && $(SHELL) ./config.status config.h
  +
  +$(srcdir)/config.h.in:  $(top_srcdir)/configure.ac $(ACLOCAL_M4) 
  +	cd $(top_srcdir) && $(AUTOHEADER)
  +	touch $(srcdir)/config.h.in
  +
  +distclean-hdr:
  +	-rm -f config.h stamp-h1
  +libLTLIBRARIES_INSTALL = $(INSTALL)
  +install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  +	@$(NORMAL_INSTALL)
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  if test -f $$p; then \
  +	    f="`echo $$p | sed -e 's|^.*/||'`"; \
  +	    echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \
  +	    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \
  +	  else :; fi; \
  +	done
  +
  +uninstall-libLTLIBRARIES:
  +	@$(NORMAL_UNINSTALL)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	    p="`echo $$p | sed -e 's|^.*/||'`"; \
  +	  echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \
  +	  $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
  +	done
  +
  +clean-libLTLIBRARIES:
  +	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
  +	  test -z "$dir" && dir=.; \
  +	  echo "rm -f \"$${dir}/so_locations\""; \
  +	  rm -f "$${dir}/so_locations"; \
  +	done
  +libloghandler.la: $(libloghandler_la_OBJECTS) $(libloghandler_la_DEPENDENCIES) 
  +	$(CXXLINK) -rpath $(libdir) $(libloghandler_la_LDFLAGS) $(libloghandler_la_OBJECTS) $(libloghandler_la_LIBADD) $(LIBS)
  +
  +mostlyclean-compile:
  +	-rm -f *.$(OBJEXT) core *.core
  +
  +distclean-compile:
  +	-rm -f *.tab.c
  +
  +include ./$(DEPDIR)/LogAccessCount.Plo
  +include ./$(DEPDIR)/LogHandler.Plo
  +
  +distclean-depend:
  +	-rm -rf ./$(DEPDIR)
  +
  +.cpp.o:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +
  +.cpp.obj:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `cygpath -w $<`
  +
  +.cpp.lo:
  +	source='$<' object='$@' libtool=yes \
  +	depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +CXXDEPMODE = depmode=gcc3
  +
  +mostlyclean-libtool:
  +	-rm -f *.lo
  +
  +clean-libtool:
  +	-rm -rf .libs _libs
  +
  +distclean-libtool:
  +	-rm -f libtool
  +uninstall-info-am:
  +
  +# This directory's subdirectories are mostly independent; you can cd
  +# into them and run `make' without going through this Makefile.
  +# To change the values of `make' variables: instead of editing Makefiles,
  +# (1) if the variable is set in `config.status', edit `config.status'
  +#     (which will cause the Makefiles to be regenerated when you run `make');
  +# (2) otherwise, pass the desired values on the `make' command line.
  +$(RECURSIVE_TARGETS):
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    dot_seen=yes; \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done; \
  +	if test "$$dot_seen" = "no"; then \
  +	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  +	fi; test -z "$$fail"
  +
  +mostlyclean-recursive clean-recursive distclean-recursive \
  +maintainer-clean-recursive:
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	case "$@" in \
  +	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  +	  *) list='$(SUBDIRS)' ;; \
  +	esac; \
  +	rev=''; for subdir in $$list; do \
  +	  if test "$$subdir" = "."; then :; else \
  +	    rev="$$subdir $$rev"; \
  +	  fi; \
  +	done; \
  +	rev="$$rev ."; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	for subdir in $$rev; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done && test -z "$$fail"
  +tags-recursive:
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  +	done
  +
  +ETAGS = etags
  +ETAGSFLAGS =
  +
  +tags: TAGS
  +
  +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  +	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	mkid -fID $$unique
  +
  +TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  +		$(TAGS_FILES) $(LISP)
  +	tags=; \
  +	here=`pwd`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
  +	  fi; \
  +	done; \
  +	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	test -z "$(ETAGS_ARGS)$$tags$$unique" \
  +	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  +	     $$tags $$unique
  +
  +GTAGS:
  +	here=`$(am__cd) $(top_builddir) && pwd` \
  +	  && cd $(top_srcdir) \
  +	  && gtags -i $(GTAGS_ARGS) $$here
  +
  +distclean-tags:
  +	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
  +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  +
  +top_distdir = .
  +distdir = $(PACKAGE)-$(VERSION)
  +
  +am__remove_distdir = \
  +  { test ! -d $(distdir) \
  +    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
  +         && rm -fr $(distdir); }; }
  +
  +GZIP_ENV = --best
  +distcleancheck_listfiles = find . -type f -print
  +
  +distdir: $(DISTFILES)
  +	$(am__remove_distdir)
  +	mkdir $(distdir)
  +	@list='$(DISTFILES)'; for file in $$list; do \
  +	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  +	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  +	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  +	    dir="/$$dir"; \
  +	    $(mkinstalldirs) "$(distdir)$$dir"; \
  +	  else \
  +	    dir=''; \
  +	  fi; \
  +	  if test -d $$d/$$file; then \
  +	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  +	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
  +	    fi; \
  +	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
  +	  else \
  +	    test -f $(distdir)/$$file \
  +	    || cp -p $$d/$$file $(distdir)/$$file \
  +	    || exit 1; \
  +	  fi; \
  +	done
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -d $(distdir)/$$subdir \
  +	    || mkdir $(distdir)/$$subdir \
  +	    || exit 1; \
  +	    (cd $$subdir && \
  +	      $(MAKE) $(AM_MAKEFLAGS) \
  +	        top_distdir="$(top_distdir)" \
  +	        distdir=../$(distdir)/$$subdir \
  +	        distdir) \
  +	      || exit 1; \
  +	  fi; \
  +	done
  +	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
  +	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
  +	|| chmod -R a+r $(distdir)
  +dist-gzip: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +dist dist-all: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +# This target untars the dist file and tries a VPATH configuration.  Then
  +# it guarantees that the distribution is self-contained by making another
  +# tarfile.
  +distcheck: dist
  +	$(am__remove_distdir)
  +	GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
  +	chmod -R a-w $(distdir); chmod a+w $(distdir)
  +	mkdir $(distdir)/=build
  +	mkdir $(distdir)/=inst
  +	chmod a-w $(distdir)
  +	dc_install_base=`$(am__cd) $(distdir)/=inst && pwd` \
  +	  && cd $(distdir)/=build \
  +	  && ../configure --srcdir=.. --prefix=$$dc_install_base \
  +	    $(DISTCHECK_CONFIGURE_FLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
  +	  && $(MAKE) $(AM_MAKEFLAGS) check \
  +	  && $(MAKE) $(AM_MAKEFLAGS) install \
  +	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  +	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  +	  && (test `find $$dc_install_base -type f -print | wc -l` -le 1 \
  +	      || { echo "ERROR: files left after uninstall:" ; \
  +	           find $$dc_install_base -type f -print ; \
  +	           exit 1; } >&2 ) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
  +	  && rm -f $(distdir).tar.gz \
  +	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
  +	$(am__remove_distdir)
  +	@echo "$(distdir).tar.gz is ready for distribution" | \
  +	  sed 'h;s/./=/g;p;x;p;x'
  +distcleancheck: distclean
  +	if test '$(srcdir)' = . ; then \
  +	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  +	  exit 1 ; \
  +	fi
  +	test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  +	  || { echo "ERROR: files left after distclean:" ; \
  +	       $(distcleancheck_listfiles) ; \
  +	       exit 1; } >&2
  +check-am: all-am
  +check: check-recursive
  +all-am: Makefile $(LTLIBRARIES) config.h
  +installdirs: installdirs-recursive
  +installdirs-am:
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +
  +install: install-recursive
  +install-exec: install-exec-recursive
  +install-data: install-data-recursive
  +uninstall: uninstall-recursive
  +
  +install-am: all-am
  +	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  +
  +installcheck: installcheck-recursive
  +install-strip:
  +	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  +	  INSTALL_STRIP_FLAG=-s \
  +	  `test -z '$(STRIP)' || \
  +	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  +mostlyclean-generic:
  +
  +clean-generic:
  +
  +distclean-generic:
  +	-rm -f Makefile $(CONFIG_CLEAN_FILES)
  +
  +maintainer-clean-generic:
  +	@echo "This command is intended for maintainers to use"
  +	@echo "it deletes files that may require special tools to rebuild."
  +clean: clean-recursive
  +
  +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  +	mostlyclean-am
  +
  +distclean: distclean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +distclean-am: clean-am distclean-compile distclean-depend \
  +	distclean-generic distclean-hdr distclean-libtool \
  +	distclean-tags
  +
  +dvi: dvi-recursive
  +
  +dvi-am:
  +
  +info: info-recursive
  +
  +info-am:
  +
  +install-data-am:
  +
  +install-exec-am: install-libLTLIBRARIES
  +
  +install-info: install-info-recursive
  +
  +install-man:
  +
  +installcheck-am:
  +
  +maintainer-clean: maintainer-clean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +	-rm -rf autom4te.cache
  +maintainer-clean-am: distclean-am maintainer-clean-generic
  +
  +mostlyclean: mostlyclean-recursive
  +
  +mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  +	mostlyclean-libtool
  +
  +uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
  +
  +uninstall-info: uninstall-info-recursive
  +
  +.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
  +	clean-generic clean-libLTLIBRARIES clean-libtool \
  +	clean-recursive dist dist-all dist-gzip distcheck distclean \
  +	distclean-compile distclean-depend distclean-generic \
  +	distclean-hdr distclean-libtool distclean-recursive \
  +	distclean-tags distcleancheck distdir dvi dvi-am dvi-recursive \
  +	info info-am info-recursive install install-am install-data \
  +	install-data-am install-data-recursive install-exec \
  +	install-exec-am install-exec-recursive install-info \
  +	install-info-am install-info-recursive install-libLTLIBRARIES \
  +	install-man install-recursive install-strip installcheck \
  +	installcheck-am installdirs installdirs-am \
  +	installdirs-recursive maintainer-clean maintainer-clean-generic \
  +	maintainer-clean-recursive mostlyclean mostlyclean-compile \
  +	mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
  +	tags tags-recursive uninstall uninstall-am uninstall-info-am \
  +	uninstall-info-recursive uninstall-libLTLIBRARIES \
  +	uninstall-recursive
  +
  +# Tell versions [3.59,3.63) of GNU make to not export all variables.
  +# Otherwise a system limit (for SysV at least) may be exceeded.
  +.NOEXPORT:
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/loghandler/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libloghandler.la
  SUBDIRS =
  AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  libloghandler_la_SOURCES = LogAccessCount.cpp LogHandler.cpp
  
  libloghandler_la_LIBADD   =  -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/loghandler/autogen.sh
  
  Index: autogen.sh
  ===================================================================
  #! /bin/sh
  
  # $Id: autogen.sh,v 1.1 2003/10/02 06:06:16 damitha Exp $
  #
  # Copyright (c) 2002  Daniel Elstner  <da...@gmx.net>
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License VERSION 2 as
  # published by the Free Software Foundation.  You are not allowed to
  # use any other version of the license; unless you got the explicit
  # permission from the author to do so.
  #
  # This program is distributed in the hope that it will be useful,
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  # GNU General Public License for more details.
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  
  
  dir=`echo "$0" | sed 's,[^/]*$,,'`
  test "x${dir}" = "x" && dir='.'
  
  if test "x`cd "${dir}" 2>/dev/null && pwd`" != "x`pwd`"
  then
      echo "This script must be executed directly from the source directory."
      exit 1
  fi
  
  rm -f config.cache acconfig.h
  
  echo "- libtoolize."		&& \
  libtoolize --force		&& \
  echo "- aclocal."		&& \
  aclocal				&& \
  echo "- autoconf."		&& \
  autoconf			&& \
  echo "- autoheader."		&& \
  autoheader			&& \
  echo "- automake."		&& \
  automake --add-missing --gnu	&&
  #echo				&& \
  #./configure "$@"		&& exit 0
  
  exit 1
  
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/loghandler/configure.ac
  
  Index: configure.ac
  ===================================================================
  AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
  AM_INIT_AUTOMAKE(0.3)
  AM_CONFIG_HEADER(config.h)
  
  AC_PROG_CC
  AC_PROG_CXX
  AC_PROG_INSTALL
  AC_PROG_LIBTOOL
  AC_OUTPUT(Makefile)
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/loghandler/runconfig
  
  Index: runconfig
  ===================================================================
  #!/bin/bash
  configure --libdir=$AXISCPP_HOME/src/server/handlers/custom/loghandler/lib
  
  
  
  1.2       +539 -36   ws-axis/c/src/server/handlers/custom/simpleauthhandler/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/simpleauthhandler/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	7 Jul 2003 13:30:05 -0000	1.1
  +++ Makefile	2 Oct 2003 06:06:16 -0000	1.2
  @@ -1,37 +1,540 @@
  -# Makefile for axishandlers
  -#
  -#
  -# Modify the TOPDIR variable to point to the top of the
  -# directory tree where the Axis_Lib dir may be found.
  -#
  -
  -BASE_PATH = ../../../../..
  -include ../../../../../inc.mk
  -
  -PACKAGE_SRCS = SimpleAuthorizationHandler.cpp \
  -		SimpleAuth.cpp
  -
  -PACKAGE_OBJS = $(PACKAGE_SRCS:%.cpp=$(AX_OBJ_DIR_HANDLERS)/custom/simpleauthhandler/%.o)
  -
  -$(AX_OBJ_DIR_HANDLERS)/custom/simpleauthhandler/%.o: %.cpp
  -	$(COMPILE.gcc) -o $@ $<
  -	@touch $(AX_OBJ_DIR_HANDLERS)/custom/simpleauthhandler/timestamp
  -
  -
  -all: MAKE_LIB
  -
  -MAKE_LIB:OBJS
  -	@echo "making libsimpleauth.so shared library" ;
  -	$(AX_SO) $(AX_SO_HANDLERS)/custom/simpleauthhandler/libsimpleauthhandler.so $(AX_OBJ_DIR_HANDLERS)/custom/simpleauthhandler/*.o -ldl -lstdc++
  -
  -#$(AX_OBJ_DIR_HANDLERS)/timestamp objects:
  -#	@( cd $(AX_SRC_DIR) ; $(MAKE) -$(MAKEFLAGS) )
  -
  -OBJS: $(PACKAGE_OBJS)
  -
  -
  -clean:
  -	-@rm -rf $(AX_OBJ_DIR)/server/handlers/custom/simpleauthhandler/*
  -	-@rm -rf $(OBJS) *~
  -
  +# Makefile.in generated by automake 1.6.3 from Makefile.am.
  +# Makefile.  Generated from Makefile.in by configure.
   
  +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
  +# Free Software Foundation, Inc.
  +# This Makefile.in is free software; the Free Software Foundation
  +# gives unlimited permission to copy and/or distribute it,
  +# with or without modifications, as long as this notice is preserved.
  +
  +# This program is distributed in the hope that it will be useful,
  +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  +# PARTICULAR PURPOSE.
  +
  +
  +SHELL = /bin/sh
  +
  +srcdir = .
  +top_srcdir = .
  +
  +prefix = /usr/local
  +exec_prefix = ${prefix}
  +
  +bindir = ${exec_prefix}/bin
  +sbindir = ${exec_prefix}/sbin
  +libexecdir = ${exec_prefix}/libexec
  +datadir = ${prefix}/share
  +sysconfdir = ${prefix}/etc
  +sharedstatedir = ${prefix}/com
  +localstatedir = ${prefix}/var
  +libdir = /home/damitha/projects/axiscpp/c/src/server/handlers/custom/simpleauthhandler/lib
  +infodir = ${prefix}/info
  +mandir = ${prefix}/man
  +includedir = ${prefix}/include
  +oldincludedir = /usr/include
  +pkgdatadir = $(datadir)/full-package-name
  +pkglibdir = $(libdir)/full-package-name
  +pkgincludedir = $(includedir)/full-package-name
  +top_builddir = .
  +
  +ACLOCAL = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/simpleauthhandler/missing --run aclocal-1.6
  +AUTOCONF = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/simpleauthhandler/missing --run autoconf
  +AUTOMAKE = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/simpleauthhandler/missing --run automake-1.6
  +AUTOHEADER = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/simpleauthhandler/missing --run autoheader
  +
  +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  +INSTALL = /usr/bin/install -c
  +INSTALL_PROGRAM = ${INSTALL}
  +INSTALL_DATA = ${INSTALL} -m 644
  +install_sh_DATA = $(install_sh) -c -m 644
  +install_sh_PROGRAM = $(install_sh) -c
  +install_sh_SCRIPT = $(install_sh) -c
  +INSTALL_SCRIPT = ${INSTALL}
  +INSTALL_HEADER = $(INSTALL_DATA)
  +transform = s,x,x,
  +NORMAL_INSTALL = :
  +PRE_INSTALL = :
  +POST_INSTALL = :
  +NORMAL_UNINSTALL = :
  +PRE_UNINSTALL = :
  +POST_UNINSTALL = :
  +host_alias = 
  +host_triplet = i686-pc-linux-gnu
  +
  +EXEEXT = 
  +OBJEXT = o
  +PATH_SEPARATOR = :
  +AMTAR = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/custom/simpleauthhandler/missing --run tar
  +AS = @AS@
  +AWK = gawk
  +CC = gcc
  +CXX = g++
  +DEPDIR = .deps
  +DLLTOOL = @DLLTOOL@
  +ECHO = echo
  +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
  +LIBTOOL = $(SHELL) $(top_builddir)/libtool
  +LN_S = ln -s
  +OBJDUMP = @OBJDUMP@
  +PACKAGE = full-package-name
  +RANLIB = ranlib
  +STRIP = strip
  +VERSION = VERSION
  +am__include = include
  +am__quote = 
  +install_sh = /home/damitha/projects/axiscpp/c/src/server/handlers/custom/simpleauthhandler/install-sh
  +lib_LTLIBRARIES = libsimpleauthhandler.la
  +SUBDIRS = 
  +AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  +libsimpleauthhandler_la_SOURCES = SimpleAuth.cpp SimpleAuthorizationHandler.cpp
  +
  +libsimpleauthhandler_la_LIBADD = -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  +INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  +subdir = .
  +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  +CONFIG_HEADER = config.h
  +CONFIG_CLEAN_FILES =
  +LTLIBRARIES = $(lib_LTLIBRARIES)
  +
  +libsimpleauthhandler_la_LDFLAGS =
  +libsimpleauthhandler_la_DEPENDENCIES = \
  +	$(AXISCPP_HOME)/release/libaxiscpp_mod.la
  +am_libsimpleauthhandler_la_OBJECTS = SimpleAuth.lo \
  +	SimpleAuthorizationHandler.lo
  +libsimpleauthhandler_la_OBJECTS = $(am_libsimpleauthhandler_la_OBJECTS)
  +
  +DEFS = -DHAVE_CONFIG_H
  +DEFAULT_INCLUDES =  -I. -I$(srcdir) -I.
  +CPPFLAGS = 
  +LDFLAGS = 
  +LIBS = 
  +depcomp = $(SHELL) $(top_srcdir)/depcomp
  +am__depfiles_maybe = depfiles
  +DEP_FILES = ./$(DEPDIR)/SimpleAuth.Plo \
  +	./$(DEPDIR)/SimpleAuthorizationHandler.Plo
  +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  +	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  +LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
  +	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  +	$(AM_CXXFLAGS) $(CXXFLAGS)
  +CXXLD = $(CXX)
  +CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
  +	$(AM_LDFLAGS) $(LDFLAGS) -o $@
  +CXXFLAGS = -g -O2
  +DIST_SOURCES = $(libsimpleauthhandler_la_SOURCES)
  +
  +RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
  +	uninstall-info-recursive all-recursive install-data-recursive \
  +	install-exec-recursive installdirs-recursive install-recursive \
  +	uninstall-recursive check-recursive installcheck-recursive
  +DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
  +	Makefile.in NEWS aclocal.m4 config.guess config.h.in config.sub \
  +	configure configure.ac depcomp install-sh ltmain.sh missing \
  +	mkinstalldirs
  +DIST_SUBDIRS = $(SUBDIRS)
  +SOURCES = $(libsimpleauthhandler_la_SOURCES)
  +
  +all: config.h
  +	$(MAKE) $(AM_MAKEFLAGS) all-recursive
  +
  +.SUFFIXES:
  +.SUFFIXES: .cpp .lo .o .obj
  +
  +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  + configure.lineno
  +$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
  +	cd $(top_srcdir) && \
  +	  $(AUTOMAKE) --gnu  Makefile
  +Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
  +	cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
  +
  +$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  +	$(SHELL) ./config.status --recheck
  +$(srcdir)/configure:  $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
  +	cd $(srcdir) && $(AUTOCONF)
  +
  +$(ACLOCAL_M4):  configure.ac 
  +	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  +
  +config.h: stamp-h1
  +	@if test ! -f $@; then \
  +	  rm -f stamp-h1; \
  +	  $(MAKE) stamp-h1; \
  +	else :; fi
  +
  +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  +	@rm -f stamp-h1
  +	cd $(top_builddir) && $(SHELL) ./config.status config.h
  +
  +$(srcdir)/config.h.in:  $(top_srcdir)/configure.ac $(ACLOCAL_M4) 
  +	cd $(top_srcdir) && $(AUTOHEADER)
  +	touch $(srcdir)/config.h.in
  +
  +distclean-hdr:
  +	-rm -f config.h stamp-h1
  +libLTLIBRARIES_INSTALL = $(INSTALL)
  +install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  +	@$(NORMAL_INSTALL)
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  if test -f $$p; then \
  +	    f="`echo $$p | sed -e 's|^.*/||'`"; \
  +	    echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \
  +	    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \
  +	  else :; fi; \
  +	done
  +
  +uninstall-libLTLIBRARIES:
  +	@$(NORMAL_UNINSTALL)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	    p="`echo $$p | sed -e 's|^.*/||'`"; \
  +	  echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \
  +	  $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
  +	done
  +
  +clean-libLTLIBRARIES:
  +	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
  +	  test -z "$dir" && dir=.; \
  +	  echo "rm -f \"$${dir}/so_locations\""; \
  +	  rm -f "$${dir}/so_locations"; \
  +	done
  +libsimpleauthhandler.la: $(libsimpleauthhandler_la_OBJECTS) $(libsimpleauthhandler_la_DEPENDENCIES) 
  +	$(CXXLINK) -rpath $(libdir) $(libsimpleauthhandler_la_LDFLAGS) $(libsimpleauthhandler_la_OBJECTS) $(libsimpleauthhandler_la_LIBADD) $(LIBS)
  +
  +mostlyclean-compile:
  +	-rm -f *.$(OBJEXT) core *.core
  +
  +distclean-compile:
  +	-rm -f *.tab.c
  +
  +include ./$(DEPDIR)/SimpleAuth.Plo
  +include ./$(DEPDIR)/SimpleAuthorizationHandler.Plo
  +
  +distclean-depend:
  +	-rm -rf ./$(DEPDIR)
  +
  +.cpp.o:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +
  +.cpp.obj:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `cygpath -w $<`
  +
  +.cpp.lo:
  +	source='$<' object='$@' libtool=yes \
  +	depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +CXXDEPMODE = depmode=gcc3
  +
  +mostlyclean-libtool:
  +	-rm -f *.lo
  +
  +clean-libtool:
  +	-rm -rf .libs _libs
  +
  +distclean-libtool:
  +	-rm -f libtool
  +uninstall-info-am:
  +
  +# This directory's subdirectories are mostly independent; you can cd
  +# into them and run `make' without going through this Makefile.
  +# To change the values of `make' variables: instead of editing Makefiles,
  +# (1) if the variable is set in `config.status', edit `config.status'
  +#     (which will cause the Makefiles to be regenerated when you run `make');
  +# (2) otherwise, pass the desired values on the `make' command line.
  +$(RECURSIVE_TARGETS):
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    dot_seen=yes; \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done; \
  +	if test "$$dot_seen" = "no"; then \
  +	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  +	fi; test -z "$$fail"
  +
  +mostlyclean-recursive clean-recursive distclean-recursive \
  +maintainer-clean-recursive:
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	case "$@" in \
  +	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  +	  *) list='$(SUBDIRS)' ;; \
  +	esac; \
  +	rev=''; for subdir in $$list; do \
  +	  if test "$$subdir" = "."; then :; else \
  +	    rev="$$subdir $$rev"; \
  +	  fi; \
  +	done; \
  +	rev="$$rev ."; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	for subdir in $$rev; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done && test -z "$$fail"
  +tags-recursive:
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  +	done
  +
  +ETAGS = etags
  +ETAGSFLAGS =
  +
  +tags: TAGS
  +
  +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  +	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	mkid -fID $$unique
  +
  +TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  +		$(TAGS_FILES) $(LISP)
  +	tags=; \
  +	here=`pwd`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
  +	  fi; \
  +	done; \
  +	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	test -z "$(ETAGS_ARGS)$$tags$$unique" \
  +	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  +	     $$tags $$unique
  +
  +GTAGS:
  +	here=`$(am__cd) $(top_builddir) && pwd` \
  +	  && cd $(top_srcdir) \
  +	  && gtags -i $(GTAGS_ARGS) $$here
  +
  +distclean-tags:
  +	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
  +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  +
  +top_distdir = .
  +distdir = $(PACKAGE)-$(VERSION)
  +
  +am__remove_distdir = \
  +  { test ! -d $(distdir) \
  +    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
  +         && rm -fr $(distdir); }; }
  +
  +GZIP_ENV = --best
  +distcleancheck_listfiles = find . -type f -print
  +
  +distdir: $(DISTFILES)
  +	$(am__remove_distdir)
  +	mkdir $(distdir)
  +	@list='$(DISTFILES)'; for file in $$list; do \
  +	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  +	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  +	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  +	    dir="/$$dir"; \
  +	    $(mkinstalldirs) "$(distdir)$$dir"; \
  +	  else \
  +	    dir=''; \
  +	  fi; \
  +	  if test -d $$d/$$file; then \
  +	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  +	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
  +	    fi; \
  +	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
  +	  else \
  +	    test -f $(distdir)/$$file \
  +	    || cp -p $$d/$$file $(distdir)/$$file \
  +	    || exit 1; \
  +	  fi; \
  +	done
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -d $(distdir)/$$subdir \
  +	    || mkdir $(distdir)/$$subdir \
  +	    || exit 1; \
  +	    (cd $$subdir && \
  +	      $(MAKE) $(AM_MAKEFLAGS) \
  +	        top_distdir="$(top_distdir)" \
  +	        distdir=../$(distdir)/$$subdir \
  +	        distdir) \
  +	      || exit 1; \
  +	  fi; \
  +	done
  +	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
  +	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
  +	|| chmod -R a+r $(distdir)
  +dist-gzip: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +dist dist-all: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +# This target untars the dist file and tries a VPATH configuration.  Then
  +# it guarantees that the distribution is self-contained by making another
  +# tarfile.
  +distcheck: dist
  +	$(am__remove_distdir)
  +	GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
  +	chmod -R a-w $(distdir); chmod a+w $(distdir)
  +	mkdir $(distdir)/=build
  +	mkdir $(distdir)/=inst
  +	chmod a-w $(distdir)
  +	dc_install_base=`$(am__cd) $(distdir)/=inst && pwd` \
  +	  && cd $(distdir)/=build \
  +	  && ../configure --srcdir=.. --prefix=$$dc_install_base \
  +	    $(DISTCHECK_CONFIGURE_FLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
  +	  && $(MAKE) $(AM_MAKEFLAGS) check \
  +	  && $(MAKE) $(AM_MAKEFLAGS) install \
  +	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  +	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  +	  && (test `find $$dc_install_base -type f -print | wc -l` -le 1 \
  +	      || { echo "ERROR: files left after uninstall:" ; \
  +	           find $$dc_install_base -type f -print ; \
  +	           exit 1; } >&2 ) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
  +	  && rm -f $(distdir).tar.gz \
  +	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
  +	$(am__remove_distdir)
  +	@echo "$(distdir).tar.gz is ready for distribution" | \
  +	  sed 'h;s/./=/g;p;x;p;x'
  +distcleancheck: distclean
  +	if test '$(srcdir)' = . ; then \
  +	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  +	  exit 1 ; \
  +	fi
  +	test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  +	  || { echo "ERROR: files left after distclean:" ; \
  +	       $(distcleancheck_listfiles) ; \
  +	       exit 1; } >&2
  +check-am: all-am
  +check: check-recursive
  +all-am: Makefile $(LTLIBRARIES) config.h
  +installdirs: installdirs-recursive
  +installdirs-am:
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +
  +install: install-recursive
  +install-exec: install-exec-recursive
  +install-data: install-data-recursive
  +uninstall: uninstall-recursive
  +
  +install-am: all-am
  +	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  +
  +installcheck: installcheck-recursive
  +install-strip:
  +	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  +	  INSTALL_STRIP_FLAG=-s \
  +	  `test -z '$(STRIP)' || \
  +	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  +mostlyclean-generic:
  +
  +clean-generic:
  +
  +distclean-generic:
  +	-rm -f Makefile $(CONFIG_CLEAN_FILES)
  +
  +maintainer-clean-generic:
  +	@echo "This command is intended for maintainers to use"
  +	@echo "it deletes files that may require special tools to rebuild."
  +clean: clean-recursive
  +
  +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  +	mostlyclean-am
  +
  +distclean: distclean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +distclean-am: clean-am distclean-compile distclean-depend \
  +	distclean-generic distclean-hdr distclean-libtool \
  +	distclean-tags
  +
  +dvi: dvi-recursive
  +
  +dvi-am:
  +
  +info: info-recursive
  +
  +info-am:
  +
  +install-data-am:
  +
  +install-exec-am: install-libLTLIBRARIES
  +
  +install-info: install-info-recursive
  +
  +install-man:
  +
  +installcheck-am:
  +
  +maintainer-clean: maintainer-clean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +	-rm -rf autom4te.cache
  +maintainer-clean-am: distclean-am maintainer-clean-generic
  +
  +mostlyclean: mostlyclean-recursive
  +
  +mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  +	mostlyclean-libtool
  +
  +uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
  +
  +uninstall-info: uninstall-info-recursive
  +
  +.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
  +	clean-generic clean-libLTLIBRARIES clean-libtool \
  +	clean-recursive dist dist-all dist-gzip distcheck distclean \
  +	distclean-compile distclean-depend distclean-generic \
  +	distclean-hdr distclean-libtool distclean-recursive \
  +	distclean-tags distcleancheck distdir dvi dvi-am dvi-recursive \
  +	info info-am info-recursive install install-am install-data \
  +	install-data-am install-data-recursive install-exec \
  +	install-exec-am install-exec-recursive install-info \
  +	install-info-am install-info-recursive install-libLTLIBRARIES \
  +	install-man install-recursive install-strip installcheck \
  +	installcheck-am installdirs installdirs-am \
  +	installdirs-recursive maintainer-clean maintainer-clean-generic \
  +	maintainer-clean-recursive mostlyclean mostlyclean-compile \
  +	mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
  +	tags tags-recursive uninstall uninstall-am uninstall-info-am \
  +	uninstall-info-recursive uninstall-libLTLIBRARIES \
  +	uninstall-recursive
  +
  +# Tell versions [3.59,3.63) of GNU make to not export all variables.
  +# Otherwise a system limit (for SysV at least) may be exceeded.
  +.NOEXPORT:
  
  
  
  1.5       +14 -2     ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.cpp
  
  Index: SimpleAuthorizationHandler.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SimpleAuthorizationHandler.cpp	9 Sep 2003 12:53:01 -0000	1.4
  +++ SimpleAuthorizationHandler.cpp	2 Oct 2003 06:06:16 -0000	1.5
  @@ -65,8 +65,8 @@
   #include <string.h>
   #include <fstream>
   #include <string>
  -//#include "../../../../common/AxisTrace.h"
  -#include "../../../../common/MessageData.h"
  +#include <AxisTrace.h>
  +#include <MessageData.h>
   
   SimpleAuthorizationHandler::SimpleAuthorizationHandler()
   {
  @@ -151,4 +151,16 @@
      m_Option = OptionList;
   }
   
  +int SimpleAuthorizationHandler::Init()
  +{
  +	//do any initialization, resetting of values
  +
  +	return SUCCESS;
  +}
   
  +int SimpleAuthorizationHandler::Fini()
  +{
  +	//do any finalizatoin
  +
  +	return SUCCESS;
  +}
  
  
  
  1.4       +11 -10    ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.h
  
  Index: SimpleAuthorizationHandler.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/custom/simpleauthhandler/SimpleAuthorizationHandler.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SimpleAuthorizationHandler.h	4 Sep 2003 06:51:40 -0000	1.3
  +++ SimpleAuthorizationHandler.h	2 Oct 2003 06:06:16 -0000	1.4
  @@ -58,26 +58,27 @@
    * @author  Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
    *
    */
  -#include "../../../../common/IMessageData.h"
  +#include <IMessageData.h>
   #include "../../../../wsdd/WSDDHandler.h"
   #include "../../../../wsdd/WSDDService.h"
  -#include "../../../../common/Handler.h"
  +#include <Handler.h>
   #include <list>
   
   class SimpleAuthorizationHandler : public Handler
   {
   public:
  -	SimpleAuthorizationHandler();
  +    SimpleAuthorizationHandler();
   	virtual ~SimpleAuthorizationHandler();
  -
  +    int Init();
  +    int Fini();
   	int Invoke(IMessageData* pMsg);
   	void OnFault(IMessageData* pMsg);
  -  string GetOption(string sArg);
  -  void SetOption(string sOption, string Value);
  -  void SetOptionList(map<string, string>* OptionList);
  +    string GetOption(string sArg);
  +    void SetOption(string sOption, string Value);
  +    void SetOptionList(map<string, string>* OptionList);
   
   protected:
  -  string m_sAuthUser;
  -  list<string> m_AllowedRoles;
  -  list<string>::iterator m_itCurrentRole;
  +    string m_sAuthUser;
  +    list<string> m_AllowedRoles;
  +    list<string>::iterator m_itCurrentRole;
   };
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/simpleauthhandler/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libsimpleauthhandler.la
  SUBDIRS =
  AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  libsimpleauthhandler_la_SOURCES = SimpleAuth.cpp SimpleAuthorizationHandler.cpp
  
  libsimpleauthhandler_la_LIBADD   =  -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/simpleauthhandler/autogen.sh
  
  Index: autogen.sh
  ===================================================================
  #! /bin/sh
  
  # $Id: autogen.sh,v 1.1 2003/10/02 06:06:16 damitha Exp $
  #
  # Copyright (c) 2002  Daniel Elstner  <da...@gmx.net>
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License VERSION 2 as
  # published by the Free Software Foundation.  You are not allowed to
  # use any other version of the license; unless you got the explicit
  # permission from the author to do so.
  #
  # This program is distributed in the hope that it will be useful,
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  # GNU General Public License for more details.
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  
  
  dir=`echo "$0" | sed 's,[^/]*$,,'`
  test "x${dir}" = "x" && dir='.'
  
  if test "x`cd "${dir}" 2>/dev/null && pwd`" != "x`pwd`"
  then
      echo "This script must be executed directly from the source directory."
      exit 1
  fi
  
  rm -f config.cache acconfig.h
  
  echo "- libtoolize."		&& \
  libtoolize --force		&& \
  echo "- aclocal."		&& \
  aclocal				&& \
  echo "- autoconf."		&& \
  autoconf			&& \
  echo "- autoheader."		&& \
  autoheader			&& \
  echo "- automake."		&& \
  automake --add-missing --gnu	&&
  #echo				&& \
  #./configure "$@"		&& exit 0
  
  exit 1
  
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/simpleauthhandler/configure.ac
  
  Index: configure.ac
  ===================================================================
  AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
  AM_INIT_AUTOMAKE(0.3)
  AM_CONFIG_HEADER(config.h)
  
  AC_PROG_CC
  AC_PROG_CXX
  AC_PROG_INSTALL
  AC_PROG_LIBTOOL
  AC_OUTPUT(Makefile)
  
  
  
  1.1                  ws-axis/c/src/server/handlers/custom/simpleauthhandler/runconfig
  
  Index: runconfig
  ===================================================================
  #!/bin/bash
  configure --libdir=$AXISCPP_HOME/src/server/handlers/custom/simpleauthhandler/lib
  
  
  
  1.2       +529 -22   ws-axis/c/src/server/handlers/global/testhandler1/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/global/testhandler1/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	7 Jul 2003 13:30:06 -0000	1.1
  +++ Makefile	2 Oct 2003 06:06:16 -0000	1.2
  @@ -1,32 +1,539 @@
  -# Makefile for axishandlers
  -#
  -#
  -# Modify the TOPDIR variable to point to the top of the
  -# directory tree where the Axis_Lib dir may be found.
  -#
  +# Makefile.in generated by automake 1.6.3 from Makefile.am.
  +# Makefile.  Generated from Makefile.in by configure.
   
  -BASE_PATH = ../../../../..
  -include ../../../../../inc.mk
  +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
  +# Free Software Foundation, Inc.
  +# This Makefile.in is free software; the Free Software Foundation
  +# gives unlimited permission to copy and/or distribute it,
  +# with or without modifications, as long as this notice is preserved.
   
  -PACKAGE_SRCS = TestHandler1.cpp \
  -		TestGlobal.cpp
  +# This program is distributed in the hope that it will be useful,
  +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  +# PARTICULAR PURPOSE.
   
  -PACKAGE_OBJS = $(PACKAGE_SRCS:%.cpp=$(AX_OBJ_DIR_HANDLERS)/global/testhandler1/%.o)
  -$(AX_OBJ_DIR_HANDLERS)/global/testhandler1/%.o: %.cpp
  -	$(COMPILE.gcc) -o $@ $<
  -	@touch $(AX_OBJ_DIR_HANDLERS)/global/testhandler1/timestamp
  -all: MAKE_LIB
   
  -MAKE_LIB:OBJS
  -	@echo "making libtesthandler1.so shared library" ;
  -	$(AX_SO) $(AX_SO_HANDLERS)/global/testhandler1/libtesthandler1.so $(AX_OBJ_DIR_HANDLERS)/global/testhandler1/*.o -ldl -lstdc++
  +SHELL = /bin/sh
   
  +srcdir = .
  +top_srcdir = .
   
  -OBJS: $(PACKAGE_OBJS)
  +prefix = /usr/local
  +exec_prefix = ${prefix}
   
  +bindir = ${exec_prefix}/bin
  +sbindir = ${exec_prefix}/sbin
  +libexecdir = ${exec_prefix}/libexec
  +datadir = ${prefix}/share
  +sysconfdir = ${prefix}/etc
  +sharedstatedir = ${prefix}/com
  +localstatedir = ${prefix}/var
  +libdir = /home/damitha/projects/axiscpp/c/src/server/handlers/global/testhandler1/lib
  +infodir = ${prefix}/info
  +mandir = ${prefix}/man
  +includedir = ${prefix}/include
  +oldincludedir = /usr/include
  +pkgdatadir = $(datadir)/full-package-name
  +pkglibdir = $(libdir)/full-package-name
  +pkgincludedir = $(includedir)/full-package-name
  +top_builddir = .
   
  -clean:
  -	-@rm -rf $(AX_OBJ_DIR)/server/handlers/global/testhandler1/*
  -	-@rm -rf $(OBJS) *~
  +ACLOCAL = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/global/testhandler1/missing --run aclocal-1.6
  +AUTOCONF = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/global/testhandler1/missing --run autoconf
  +AUTOMAKE = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/global/testhandler1/missing --run automake-1.6
  +AUTOHEADER = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/global/testhandler1/missing --run autoheader
   
  +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  +INSTALL = /usr/bin/install -c
  +INSTALL_PROGRAM = ${INSTALL}
  +INSTALL_DATA = ${INSTALL} -m 644
  +install_sh_DATA = $(install_sh) -c -m 644
  +install_sh_PROGRAM = $(install_sh) -c
  +install_sh_SCRIPT = $(install_sh) -c
  +INSTALL_SCRIPT = ${INSTALL}
  +INSTALL_HEADER = $(INSTALL_DATA)
  +transform = s,x,x,
  +NORMAL_INSTALL = :
  +PRE_INSTALL = :
  +POST_INSTALL = :
  +NORMAL_UNINSTALL = :
  +PRE_UNINSTALL = :
  +POST_UNINSTALL = :
  +host_alias = 
  +host_triplet = i686-pc-linux-gnu
   
  +EXEEXT = 
  +OBJEXT = o
  +PATH_SEPARATOR = :
  +AMTAR = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/global/testhandler1/missing --run tar
  +AS = @AS@
  +AWK = gawk
  +CC = gcc
  +CXX = g++
  +DEPDIR = .deps
  +DLLTOOL = @DLLTOOL@
  +ECHO = echo
  +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
  +LIBTOOL = $(SHELL) $(top_builddir)/libtool
  +LN_S = ln -s
  +OBJDUMP = @OBJDUMP@
  +PACKAGE = full-package-name
  +RANLIB = ranlib
  +STRIP = strip
  +VERSION = VERSION
  +am__include = include
  +am__quote = 
  +install_sh = /home/damitha/projects/axiscpp/c/src/server/handlers/global/testhandler1/install-sh
  +lib_LTLIBRARIES = libtesthandler1.la
  +SUBDIRS = 
  +AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  +libtesthandler1_la_SOURCES = TestGlobal.cpp TestHandler1.cpp
  +
  +libtesthandler1_la_LIBADD = -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  +INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  +subdir = .
  +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  +CONFIG_HEADER = config.h
  +CONFIG_CLEAN_FILES =
  +LTLIBRARIES = $(lib_LTLIBRARIES)
  +
  +libtesthandler1_la_LDFLAGS =
  +libtesthandler1_la_DEPENDENCIES = \
  +	$(AXISCPP_HOME)/release/libaxiscpp_mod.la
  +am_libtesthandler1_la_OBJECTS = TestGlobal.lo TestHandler1.lo
  +libtesthandler1_la_OBJECTS = $(am_libtesthandler1_la_OBJECTS)
  +
  +DEFS = -DHAVE_CONFIG_H
  +DEFAULT_INCLUDES =  -I. -I$(srcdir) -I.
  +CPPFLAGS = 
  +LDFLAGS = 
  +LIBS = 
  +depcomp = $(SHELL) $(top_srcdir)/depcomp
  +am__depfiles_maybe = depfiles
  +DEP_FILES = ./$(DEPDIR)/TestGlobal.Plo \
  +	./$(DEPDIR)/TestHandler1.Plo
  +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  +	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  +LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
  +	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  +	$(AM_CXXFLAGS) $(CXXFLAGS)
  +CXXLD = $(CXX)
  +CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
  +	$(AM_LDFLAGS) $(LDFLAGS) -o $@
  +CXXFLAGS = -g -O2
  +DIST_SOURCES = $(libtesthandler1_la_SOURCES)
  +
  +RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
  +	uninstall-info-recursive all-recursive install-data-recursive \
  +	install-exec-recursive installdirs-recursive install-recursive \
  +	uninstall-recursive check-recursive installcheck-recursive
  +DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
  +	Makefile.in NEWS aclocal.m4 config.guess config.h.in config.sub \
  +	configure configure.ac depcomp install-sh ltmain.sh missing \
  +	mkinstalldirs
  +DIST_SUBDIRS = $(SUBDIRS)
  +SOURCES = $(libtesthandler1_la_SOURCES)
  +
  +all: config.h
  +	$(MAKE) $(AM_MAKEFLAGS) all-recursive
  +
  +.SUFFIXES:
  +.SUFFIXES: .cpp .lo .o .obj
  +
  +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  + configure.lineno
  +$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
  +	cd $(top_srcdir) && \
  +	  $(AUTOMAKE) --gnu  Makefile
  +Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
  +	cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
  +
  +$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  +	$(SHELL) ./config.status --recheck
  +$(srcdir)/configure:  $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
  +	cd $(srcdir) && $(AUTOCONF)
  +
  +$(ACLOCAL_M4):  configure.ac 
  +	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  +
  +config.h: stamp-h1
  +	@if test ! -f $@; then \
  +	  rm -f stamp-h1; \
  +	  $(MAKE) stamp-h1; \
  +	else :; fi
  +
  +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  +	@rm -f stamp-h1
  +	cd $(top_builddir) && $(SHELL) ./config.status config.h
  +
  +$(srcdir)/config.h.in:  $(top_srcdir)/configure.ac $(ACLOCAL_M4) 
  +	cd $(top_srcdir) && $(AUTOHEADER)
  +	touch $(srcdir)/config.h.in
  +
  +distclean-hdr:
  +	-rm -f config.h stamp-h1
  +libLTLIBRARIES_INSTALL = $(INSTALL)
  +install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  +	@$(NORMAL_INSTALL)
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  if test -f $$p; then \
  +	    f="`echo $$p | sed -e 's|^.*/||'`"; \
  +	    echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \
  +	    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \
  +	  else :; fi; \
  +	done
  +
  +uninstall-libLTLIBRARIES:
  +	@$(NORMAL_UNINSTALL)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	    p="`echo $$p | sed -e 's|^.*/||'`"; \
  +	  echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \
  +	  $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
  +	done
  +
  +clean-libLTLIBRARIES:
  +	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
  +	  test -z "$dir" && dir=.; \
  +	  echo "rm -f \"$${dir}/so_locations\""; \
  +	  rm -f "$${dir}/so_locations"; \
  +	done
  +libtesthandler1.la: $(libtesthandler1_la_OBJECTS) $(libtesthandler1_la_DEPENDENCIES) 
  +	$(CXXLINK) -rpath $(libdir) $(libtesthandler1_la_LDFLAGS) $(libtesthandler1_la_OBJECTS) $(libtesthandler1_la_LIBADD) $(LIBS)
  +
  +mostlyclean-compile:
  +	-rm -f *.$(OBJEXT) core *.core
  +
  +distclean-compile:
  +	-rm -f *.tab.c
  +
  +include ./$(DEPDIR)/TestGlobal.Plo
  +include ./$(DEPDIR)/TestHandler1.Plo
  +
  +distclean-depend:
  +	-rm -rf ./$(DEPDIR)
  +
  +.cpp.o:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +
  +.cpp.obj:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `cygpath -w $<`
  +
  +.cpp.lo:
  +	source='$<' object='$@' libtool=yes \
  +	depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +CXXDEPMODE = depmode=gcc3
  +
  +mostlyclean-libtool:
  +	-rm -f *.lo
  +
  +clean-libtool:
  +	-rm -rf .libs _libs
  +
  +distclean-libtool:
  +	-rm -f libtool
  +uninstall-info-am:
  +
  +# This directory's subdirectories are mostly independent; you can cd
  +# into them and run `make' without going through this Makefile.
  +# To change the values of `make' variables: instead of editing Makefiles,
  +# (1) if the variable is set in `config.status', edit `config.status'
  +#     (which will cause the Makefiles to be regenerated when you run `make');
  +# (2) otherwise, pass the desired values on the `make' command line.
  +$(RECURSIVE_TARGETS):
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    dot_seen=yes; \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done; \
  +	if test "$$dot_seen" = "no"; then \
  +	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  +	fi; test -z "$$fail"
  +
  +mostlyclean-recursive clean-recursive distclean-recursive \
  +maintainer-clean-recursive:
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	case "$@" in \
  +	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  +	  *) list='$(SUBDIRS)' ;; \
  +	esac; \
  +	rev=''; for subdir in $$list; do \
  +	  if test "$$subdir" = "."; then :; else \
  +	    rev="$$subdir $$rev"; \
  +	  fi; \
  +	done; \
  +	rev="$$rev ."; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	for subdir in $$rev; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done && test -z "$$fail"
  +tags-recursive:
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  +	done
  +
  +ETAGS = etags
  +ETAGSFLAGS =
  +
  +tags: TAGS
  +
  +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  +	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	mkid -fID $$unique
  +
  +TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  +		$(TAGS_FILES) $(LISP)
  +	tags=; \
  +	here=`pwd`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
  +	  fi; \
  +	done; \
  +	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	test -z "$(ETAGS_ARGS)$$tags$$unique" \
  +	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  +	     $$tags $$unique
  +
  +GTAGS:
  +	here=`$(am__cd) $(top_builddir) && pwd` \
  +	  && cd $(top_srcdir) \
  +	  && gtags -i $(GTAGS_ARGS) $$here
  +
  +distclean-tags:
  +	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
  +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  +
  +top_distdir = .
  +distdir = $(PACKAGE)-$(VERSION)
  +
  +am__remove_distdir = \
  +  { test ! -d $(distdir) \
  +    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
  +         && rm -fr $(distdir); }; }
  +
  +GZIP_ENV = --best
  +distcleancheck_listfiles = find . -type f -print
  +
  +distdir: $(DISTFILES)
  +	$(am__remove_distdir)
  +	mkdir $(distdir)
  +	@list='$(DISTFILES)'; for file in $$list; do \
  +	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  +	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  +	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  +	    dir="/$$dir"; \
  +	    $(mkinstalldirs) "$(distdir)$$dir"; \
  +	  else \
  +	    dir=''; \
  +	  fi; \
  +	  if test -d $$d/$$file; then \
  +	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  +	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
  +	    fi; \
  +	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
  +	  else \
  +	    test -f $(distdir)/$$file \
  +	    || cp -p $$d/$$file $(distdir)/$$file \
  +	    || exit 1; \
  +	  fi; \
  +	done
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -d $(distdir)/$$subdir \
  +	    || mkdir $(distdir)/$$subdir \
  +	    || exit 1; \
  +	    (cd $$subdir && \
  +	      $(MAKE) $(AM_MAKEFLAGS) \
  +	        top_distdir="$(top_distdir)" \
  +	        distdir=../$(distdir)/$$subdir \
  +	        distdir) \
  +	      || exit 1; \
  +	  fi; \
  +	done
  +	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
  +	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
  +	|| chmod -R a+r $(distdir)
  +dist-gzip: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +dist dist-all: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +# This target untars the dist file and tries a VPATH configuration.  Then
  +# it guarantees that the distribution is self-contained by making another
  +# tarfile.
  +distcheck: dist
  +	$(am__remove_distdir)
  +	GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
  +	chmod -R a-w $(distdir); chmod a+w $(distdir)
  +	mkdir $(distdir)/=build
  +	mkdir $(distdir)/=inst
  +	chmod a-w $(distdir)
  +	dc_install_base=`$(am__cd) $(distdir)/=inst && pwd` \
  +	  && cd $(distdir)/=build \
  +	  && ../configure --srcdir=.. --prefix=$$dc_install_base \
  +	    $(DISTCHECK_CONFIGURE_FLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
  +	  && $(MAKE) $(AM_MAKEFLAGS) check \
  +	  && $(MAKE) $(AM_MAKEFLAGS) install \
  +	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  +	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  +	  && (test `find $$dc_install_base -type f -print | wc -l` -le 1 \
  +	      || { echo "ERROR: files left after uninstall:" ; \
  +	           find $$dc_install_base -type f -print ; \
  +	           exit 1; } >&2 ) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
  +	  && rm -f $(distdir).tar.gz \
  +	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
  +	$(am__remove_distdir)
  +	@echo "$(distdir).tar.gz is ready for distribution" | \
  +	  sed 'h;s/./=/g;p;x;p;x'
  +distcleancheck: distclean
  +	if test '$(srcdir)' = . ; then \
  +	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  +	  exit 1 ; \
  +	fi
  +	test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  +	  || { echo "ERROR: files left after distclean:" ; \
  +	       $(distcleancheck_listfiles) ; \
  +	       exit 1; } >&2
  +check-am: all-am
  +check: check-recursive
  +all-am: Makefile $(LTLIBRARIES) config.h
  +installdirs: installdirs-recursive
  +installdirs-am:
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +
  +install: install-recursive
  +install-exec: install-exec-recursive
  +install-data: install-data-recursive
  +uninstall: uninstall-recursive
  +
  +install-am: all-am
  +	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  +
  +installcheck: installcheck-recursive
  +install-strip:
  +	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  +	  INSTALL_STRIP_FLAG=-s \
  +	  `test -z '$(STRIP)' || \
  +	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  +mostlyclean-generic:
  +
  +clean-generic:
  +
  +distclean-generic:
  +	-rm -f Makefile $(CONFIG_CLEAN_FILES)
  +
  +maintainer-clean-generic:
  +	@echo "This command is intended for maintainers to use"
  +	@echo "it deletes files that may require special tools to rebuild."
  +clean: clean-recursive
  +
  +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  +	mostlyclean-am
  +
  +distclean: distclean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +distclean-am: clean-am distclean-compile distclean-depend \
  +	distclean-generic distclean-hdr distclean-libtool \
  +	distclean-tags
  +
  +dvi: dvi-recursive
  +
  +dvi-am:
  +
  +info: info-recursive
  +
  +info-am:
  +
  +install-data-am:
  +
  +install-exec-am: install-libLTLIBRARIES
  +
  +install-info: install-info-recursive
  +
  +install-man:
  +
  +installcheck-am:
  +
  +maintainer-clean: maintainer-clean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +	-rm -rf autom4te.cache
  +maintainer-clean-am: distclean-am maintainer-clean-generic
  +
  +mostlyclean: mostlyclean-recursive
  +
  +mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  +	mostlyclean-libtool
  +
  +uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
  +
  +uninstall-info: uninstall-info-recursive
  +
  +.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
  +	clean-generic clean-libLTLIBRARIES clean-libtool \
  +	clean-recursive dist dist-all dist-gzip distcheck distclean \
  +	distclean-compile distclean-depend distclean-generic \
  +	distclean-hdr distclean-libtool distclean-recursive \
  +	distclean-tags distcleancheck distdir dvi dvi-am dvi-recursive \
  +	info info-am info-recursive install install-am install-data \
  +	install-data-am install-data-recursive install-exec \
  +	install-exec-am install-exec-recursive install-info \
  +	install-info-am install-info-recursive install-libLTLIBRARIES \
  +	install-man install-recursive install-strip installcheck \
  +	installcheck-am installdirs installdirs-am \
  +	installdirs-recursive maintainer-clean maintainer-clean-generic \
  +	maintainer-clean-recursive mostlyclean mostlyclean-compile \
  +	mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
  +	tags tags-recursive uninstall uninstall-am uninstall-info-am \
  +	uninstall-info-recursive uninstall-libLTLIBRARIES \
  +	uninstall-recursive
  +
  +# Tell versions [3.59,3.63) of GNU make to not export all variables.
  +# Otherwise a system limit (for SysV at least) may be exceeded.
  +.NOEXPORT:
  
  
  
  1.7       +2 -2      ws-axis/c/src/server/handlers/global/testhandler1/TestGlobal.cpp
  
  Index: TestGlobal.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/global/testhandler1/TestGlobal.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TestGlobal.cpp	9 Sep 2003 12:53:01 -0000	1.6
  +++ TestGlobal.cpp	2 Oct 2003 06:06:16 -0000	1.7
  @@ -63,8 +63,8 @@
   #include "TestGlobal.h"
   #include <fstream>
   //#include <string>
  -//#include "../../../../common/AxisTrace.h"
  -#include "../../../../common/AxisException.h"
  +#include <AxisTrace.h>
  +#include <AxisException.h>
   
   //using namespace std;
   
  
  
  
  1.1                  ws-axis/c/src/server/handlers/global/testhandler1/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libtesthandler1.la
  SUBDIRS =
  AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  libtesthandler1_la_SOURCES = TestGlobal.cpp TestHandler1.cpp
  
  libtesthandler1_la_LIBADD   =  -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  
  
  
  1.1                  ws-axis/c/src/server/handlers/global/testhandler1/autogen.sh
  
  Index: autogen.sh
  ===================================================================
  #! /bin/sh
  
  # $Id: autogen.sh,v 1.1 2003/10/02 06:06:16 damitha Exp $
  #
  # Copyright (c) 2002  Daniel Elstner  <da...@gmx.net>
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License VERSION 2 as
  # published by the Free Software Foundation.  You are not allowed to
  # use any other version of the license; unless you got the explicit
  # permission from the author to do so.
  #
  # This program is distributed in the hope that it will be useful,
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  # GNU General Public License for more details.
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  
  
  dir=`echo "$0" | sed 's,[^/]*$,,'`
  test "x${dir}" = "x" && dir='.'
  
  if test "x`cd "${dir}" 2>/dev/null && pwd`" != "x`pwd`"
  then
      echo "This script must be executed directly from the source directory."
      exit 1
  fi
  
  rm -f config.cache acconfig.h
  
  echo "- libtoolize."		&& \
  libtoolize --force		&& \
  echo "- aclocal."		&& \
  aclocal				&& \
  echo "- autoconf."		&& \
  autoconf			&& \
  echo "- autoheader."		&& \
  autoheader			&& \
  echo "- automake."		&& \
  automake --add-missing --gnu	&&
  #echo				&& \
  #./configure "$@"		&& exit 0
  
  exit 1
  
  
  
  
  1.1                  ws-axis/c/src/server/handlers/global/testhandler1/configure.ac
  
  Index: configure.ac
  ===================================================================
  AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
  AM_INIT_AUTOMAKE(0.3)
  AM_CONFIG_HEADER(config.h)
  
  AC_PROG_CC
  AC_PROG_CXX
  AC_PROG_INSTALL
  AC_PROG_LIBTOOL
  AC_OUTPUT(Makefile)
  
  
  
  1.1                  ws-axis/c/src/server/handlers/global/testhandler1/runconfig
  
  Index: runconfig
  ===================================================================
  #!/bin/bash
  configure --libdir=$AXISCPP_HOME/src/server/handlers/global/testhandler1/lib
  
  
  
  1.3       +529 -21   ws-axis/c/src/server/handlers/transport/testhandler2/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/transport/testhandler2/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	17 Jul 2003 07:01:05 -0000	1.2
  +++ Makefile	2 Oct 2003 06:06:16 -0000	1.3
  @@ -1,31 +1,539 @@
  -# Makefile for axishandlers
  -#
  -#
  -# Modify the TOPDIR variable to point to the top of the
  -# directory tree where the Axis_Lib dir may be found.
  -#
  +# Makefile.in generated by automake 1.6.3 from Makefile.am.
  +# Makefile.  Generated from Makefile.in by configure.
   
  -BASE_PATH = ../../../../..
  -include ../../../../../inc.mk
  +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
  +# Free Software Foundation, Inc.
  +# This Makefile.in is free software; the Free Software Foundation
  +# gives unlimited permission to copy and/or distribute it,
  +# with or without modifications, as long as this notice is preserved.
   
  -PACKAGE_SRCS = $(wildcard *.cpp)
  +# This program is distributed in the hope that it will be useful,
  +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  +# PARTICULAR PURPOSE.
   
  -PACKAGE_OBJS = $(PACKAGE_SRCS:%.cpp=$(AX_OBJ_DIR_HANDLERS)/transport/testhandler2/%.o)
  -$(AX_OBJ_DIR_HANDLERS)/transport/testhandler2/%.o: %.cpp
  -	$(COMPILE.gcc) -o $@ $<
  -	@touch $(AX_OBJ_DIR_HANDLERS)/transport/testhandler2/timestamp
  -all: MAKE_LIB
   
  -MAKE_LIB:OBJS
  -	@echo "making libtesthandler2.so shared library" ;
  -	$(AX_SO) $(AX_SO_HANDLERS)/transport/testhandler2/libtesthandler2.so $(AX_OBJ_DIR_HANDLERS)/transport/testhandler2/*.o -ldl -lstdc++
  +SHELL = /bin/sh
   
  +srcdir = .
  +top_srcdir = .
   
  -OBJS: $(PACKAGE_OBJS)
  +prefix = /usr/local
  +exec_prefix = ${prefix}
   
  +bindir = ${exec_prefix}/bin
  +sbindir = ${exec_prefix}/sbin
  +libexecdir = ${exec_prefix}/libexec
  +datadir = ${prefix}/share
  +sysconfdir = ${prefix}/etc
  +sharedstatedir = ${prefix}/com
  +localstatedir = ${prefix}/var
  +libdir = /home/damitha/projects/axiscpp/c/src/server/handlers/transport/testhandler2/lib
  +infodir = ${prefix}/info
  +mandir = ${prefix}/man
  +includedir = ${prefix}/include
  +oldincludedir = /usr/include
  +pkgdatadir = $(datadir)/full-package-name
  +pkglibdir = $(libdir)/full-package-name
  +pkgincludedir = $(includedir)/full-package-name
  +top_builddir = .
   
  -clean:
  -	-@rm -rf $(AX_OBJ_DIR)/server/handlers/transport/testhandler2/*
  -	-@rm -rf $(OBJS) *~
  +ACLOCAL = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/transport/testhandler2/missing --run aclocal-1.6
  +AUTOCONF = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/transport/testhandler2/missing --run autoconf
  +AUTOMAKE = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/transport/testhandler2/missing --run automake-1.6
  +AUTOHEADER = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/transport/testhandler2/missing --run autoheader
   
  +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  +INSTALL = /usr/bin/install -c
  +INSTALL_PROGRAM = ${INSTALL}
  +INSTALL_DATA = ${INSTALL} -m 644
  +install_sh_DATA = $(install_sh) -c -m 644
  +install_sh_PROGRAM = $(install_sh) -c
  +install_sh_SCRIPT = $(install_sh) -c
  +INSTALL_SCRIPT = ${INSTALL}
  +INSTALL_HEADER = $(INSTALL_DATA)
  +transform = s,x,x,
  +NORMAL_INSTALL = :
  +PRE_INSTALL = :
  +POST_INSTALL = :
  +NORMAL_UNINSTALL = :
  +PRE_UNINSTALL = :
  +POST_UNINSTALL = :
  +host_alias = 
  +host_triplet = i686-pc-linux-gnu
   
  +EXEEXT = 
  +OBJEXT = o
  +PATH_SEPARATOR = :
  +AMTAR = ${SHELL} /home/damitha/projects/axiscpp/c/src/server/handlers/transport/testhandler2/missing --run tar
  +AS = @AS@
  +AWK = gawk
  +CC = gcc
  +CXX = g++
  +DEPDIR = .deps
  +DLLTOOL = @DLLTOOL@
  +ECHO = echo
  +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
  +LIBTOOL = $(SHELL) $(top_builddir)/libtool
  +LN_S = ln -s
  +OBJDUMP = @OBJDUMP@
  +PACKAGE = full-package-name
  +RANLIB = ranlib
  +STRIP = strip
  +VERSION = VERSION
  +am__include = include
  +am__quote = 
  +install_sh = /home/damitha/projects/axiscpp/c/src/server/handlers/transport/testhandler2/install-sh
  +lib_LTLIBRARIES = libtesthandler2.la
  +SUBDIRS = 
  +AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  +libtesthandler2_la_SOURCES = TestTransport.cpp TestHandler2.cpp
  +
  +libtesthandler2_la_LIBADD = -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  +INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  +subdir = .
  +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  +CONFIG_HEADER = config.h
  +CONFIG_CLEAN_FILES =
  +LTLIBRARIES = $(lib_LTLIBRARIES)
  +
  +libtesthandler2_la_LDFLAGS =
  +libtesthandler2_la_DEPENDENCIES = \
  +	$(AXISCPP_HOME)/release/libaxiscpp_mod.la
  +am_libtesthandler2_la_OBJECTS = TestTransport.lo TestHandler2.lo
  +libtesthandler2_la_OBJECTS = $(am_libtesthandler2_la_OBJECTS)
  +
  +DEFS = -DHAVE_CONFIG_H
  +DEFAULT_INCLUDES =  -I. -I$(srcdir) -I.
  +CPPFLAGS = 
  +LDFLAGS = 
  +LIBS = 
  +depcomp = $(SHELL) $(top_srcdir)/depcomp
  +am__depfiles_maybe = depfiles
  +DEP_FILES = ./$(DEPDIR)/TestHandler2.Plo \
  +	./$(DEPDIR)/TestTransport.Plo
  +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  +	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  +LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
  +	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  +	$(AM_CXXFLAGS) $(CXXFLAGS)
  +CXXLD = $(CXX)
  +CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
  +	$(AM_LDFLAGS) $(LDFLAGS) -o $@
  +CXXFLAGS = -g -O2
  +DIST_SOURCES = $(libtesthandler2_la_SOURCES)
  +
  +RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
  +	uninstall-info-recursive all-recursive install-data-recursive \
  +	install-exec-recursive installdirs-recursive install-recursive \
  +	uninstall-recursive check-recursive installcheck-recursive
  +DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
  +	Makefile.in NEWS aclocal.m4 config.guess config.h.in config.sub \
  +	configure configure.ac depcomp install-sh ltmain.sh missing \
  +	mkinstalldirs
  +DIST_SUBDIRS = $(SUBDIRS)
  +SOURCES = $(libtesthandler2_la_SOURCES)
  +
  +all: config.h
  +	$(MAKE) $(AM_MAKEFLAGS) all-recursive
  +
  +.SUFFIXES:
  +.SUFFIXES: .cpp .lo .o .obj
  +
  +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  + configure.lineno
  +$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
  +	cd $(top_srcdir) && \
  +	  $(AUTOMAKE) --gnu  Makefile
  +Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
  +	cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
  +
  +$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  +	$(SHELL) ./config.status --recheck
  +$(srcdir)/configure:  $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
  +	cd $(srcdir) && $(AUTOCONF)
  +
  +$(ACLOCAL_M4):  configure.ac 
  +	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  +
  +config.h: stamp-h1
  +	@if test ! -f $@; then \
  +	  rm -f stamp-h1; \
  +	  $(MAKE) stamp-h1; \
  +	else :; fi
  +
  +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  +	@rm -f stamp-h1
  +	cd $(top_builddir) && $(SHELL) ./config.status config.h
  +
  +$(srcdir)/config.h.in:  $(top_srcdir)/configure.ac $(ACLOCAL_M4) 
  +	cd $(top_srcdir) && $(AUTOHEADER)
  +	touch $(srcdir)/config.h.in
  +
  +distclean-hdr:
  +	-rm -f config.h stamp-h1
  +libLTLIBRARIES_INSTALL = $(INSTALL)
  +install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  +	@$(NORMAL_INSTALL)
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  if test -f $$p; then \
  +	    f="`echo $$p | sed -e 's|^.*/||'`"; \
  +	    echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \
  +	    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \
  +	  else :; fi; \
  +	done
  +
  +uninstall-libLTLIBRARIES:
  +	@$(NORMAL_UNINSTALL)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	    p="`echo $$p | sed -e 's|^.*/||'`"; \
  +	  echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \
  +	  $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
  +	done
  +
  +clean-libLTLIBRARIES:
  +	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  +	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  +	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
  +	  test -z "$dir" && dir=.; \
  +	  echo "rm -f \"$${dir}/so_locations\""; \
  +	  rm -f "$${dir}/so_locations"; \
  +	done
  +libtesthandler2.la: $(libtesthandler2_la_OBJECTS) $(libtesthandler2_la_DEPENDENCIES) 
  +	$(CXXLINK) -rpath $(libdir) $(libtesthandler2_la_LDFLAGS) $(libtesthandler2_la_OBJECTS) $(libtesthandler2_la_LIBADD) $(LIBS)
  +
  +mostlyclean-compile:
  +	-rm -f *.$(OBJEXT) core *.core
  +
  +distclean-compile:
  +	-rm -f *.tab.c
  +
  +include ./$(DEPDIR)/TestHandler2.Plo
  +include ./$(DEPDIR)/TestTransport.Plo
  +
  +distclean-depend:
  +	-rm -rf ./$(DEPDIR)
  +
  +.cpp.o:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +
  +.cpp.obj:
  +	source='$<' object='$@' libtool=no \
  +	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(CXXCOMPILE) -c -o $@ `cygpath -w $<`
  +
  +.cpp.lo:
  +	source='$<' object='$@' libtool=yes \
  +	depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
  +	$(CXXDEPMODE) $(depcomp) \
  +	$(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
  +CXXDEPMODE = depmode=gcc3
  +
  +mostlyclean-libtool:
  +	-rm -f *.lo
  +
  +clean-libtool:
  +	-rm -rf .libs _libs
  +
  +distclean-libtool:
  +	-rm -f libtool
  +uninstall-info-am:
  +
  +# This directory's subdirectories are mostly independent; you can cd
  +# into them and run `make' without going through this Makefile.
  +# To change the values of `make' variables: instead of editing Makefiles,
  +# (1) if the variable is set in `config.status', edit `config.status'
  +#     (which will cause the Makefiles to be regenerated when you run `make');
  +# (2) otherwise, pass the desired values on the `make' command line.
  +$(RECURSIVE_TARGETS):
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    dot_seen=yes; \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done; \
  +	if test "$$dot_seen" = "no"; then \
  +	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  +	fi; test -z "$$fail"
  +
  +mostlyclean-recursive clean-recursive distclean-recursive \
  +maintainer-clean-recursive:
  +	@set fnord $$MAKEFLAGS; amf=$$2; \
  +	dot_seen=no; \
  +	case "$@" in \
  +	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  +	  *) list='$(SUBDIRS)' ;; \
  +	esac; \
  +	rev=''; for subdir in $$list; do \
  +	  if test "$$subdir" = "."; then :; else \
  +	    rev="$$subdir $$rev"; \
  +	  fi; \
  +	done; \
  +	rev="$$rev ."; \
  +	target=`echo $@ | sed s/-recursive//`; \
  +	for subdir in $$rev; do \
  +	  echo "Making $$target in $$subdir"; \
  +	  if test "$$subdir" = "."; then \
  +	    local_target="$$target-am"; \
  +	  else \
  +	    local_target="$$target"; \
  +	  fi; \
  +	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  +	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  +	done && test -z "$$fail"
  +tags-recursive:
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  +	done
  +
  +ETAGS = etags
  +ETAGSFLAGS =
  +
  +tags: TAGS
  +
  +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  +	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	mkid -fID $$unique
  +
  +TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  +		$(TAGS_FILES) $(LISP)
  +	tags=; \
  +	here=`pwd`; \
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
  +	  fi; \
  +	done; \
  +	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  +	unique=`for i in $$list; do \
  +	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  +	  done | \
  +	  $(AWK) '    { files[$$0] = 1; } \
  +	       END { for (i in files) print i; }'`; \
  +	test -z "$(ETAGS_ARGS)$$tags$$unique" \
  +	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  +	     $$tags $$unique
  +
  +GTAGS:
  +	here=`$(am__cd) $(top_builddir) && pwd` \
  +	  && cd $(top_srcdir) \
  +	  && gtags -i $(GTAGS_ARGS) $$here
  +
  +distclean-tags:
  +	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
  +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  +
  +top_distdir = .
  +distdir = $(PACKAGE)-$(VERSION)
  +
  +am__remove_distdir = \
  +  { test ! -d $(distdir) \
  +    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
  +         && rm -fr $(distdir); }; }
  +
  +GZIP_ENV = --best
  +distcleancheck_listfiles = find . -type f -print
  +
  +distdir: $(DISTFILES)
  +	$(am__remove_distdir)
  +	mkdir $(distdir)
  +	@list='$(DISTFILES)'; for file in $$list; do \
  +	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  +	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  +	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  +	    dir="/$$dir"; \
  +	    $(mkinstalldirs) "$(distdir)$$dir"; \
  +	  else \
  +	    dir=''; \
  +	  fi; \
  +	  if test -d $$d/$$file; then \
  +	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  +	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
  +	    fi; \
  +	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
  +	  else \
  +	    test -f $(distdir)/$$file \
  +	    || cp -p $$d/$$file $(distdir)/$$file \
  +	    || exit 1; \
  +	  fi; \
  +	done
  +	list='$(SUBDIRS)'; for subdir in $$list; do \
  +	  if test "$$subdir" = .; then :; else \
  +	    test -d $(distdir)/$$subdir \
  +	    || mkdir $(distdir)/$$subdir \
  +	    || exit 1; \
  +	    (cd $$subdir && \
  +	      $(MAKE) $(AM_MAKEFLAGS) \
  +	        top_distdir="$(top_distdir)" \
  +	        distdir=../$(distdir)/$$subdir \
  +	        distdir) \
  +	      || exit 1; \
  +	  fi; \
  +	done
  +	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
  +	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  +	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
  +	|| chmod -R a+r $(distdir)
  +dist-gzip: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +dist dist-all: distdir
  +	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  +	$(am__remove_distdir)
  +
  +# This target untars the dist file and tries a VPATH configuration.  Then
  +# it guarantees that the distribution is self-contained by making another
  +# tarfile.
  +distcheck: dist
  +	$(am__remove_distdir)
  +	GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
  +	chmod -R a-w $(distdir); chmod a+w $(distdir)
  +	mkdir $(distdir)/=build
  +	mkdir $(distdir)/=inst
  +	chmod a-w $(distdir)
  +	dc_install_base=`$(am__cd) $(distdir)/=inst && pwd` \
  +	  && cd $(distdir)/=build \
  +	  && ../configure --srcdir=.. --prefix=$$dc_install_base \
  +	    $(DISTCHECK_CONFIGURE_FLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
  +	  && $(MAKE) $(AM_MAKEFLAGS) check \
  +	  && $(MAKE) $(AM_MAKEFLAGS) install \
  +	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  +	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  +	  && (test `find $$dc_install_base -type f -print | wc -l` -le 1 \
  +	      || { echo "ERROR: files left after uninstall:" ; \
  +	           find $$dc_install_base -type f -print ; \
  +	           exit 1; } >&2 ) \
  +	  && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
  +	  && rm -f $(distdir).tar.gz \
  +	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
  +	$(am__remove_distdir)
  +	@echo "$(distdir).tar.gz is ready for distribution" | \
  +	  sed 'h;s/./=/g;p;x;p;x'
  +distcleancheck: distclean
  +	if test '$(srcdir)' = . ; then \
  +	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  +	  exit 1 ; \
  +	fi
  +	test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  +	  || { echo "ERROR: files left after distclean:" ; \
  +	       $(distcleancheck_listfiles) ; \
  +	       exit 1; } >&2
  +check-am: all-am
  +check: check-recursive
  +all-am: Makefile $(LTLIBRARIES) config.h
  +installdirs: installdirs-recursive
  +installdirs-am:
  +	$(mkinstalldirs) $(DESTDIR)$(libdir)
  +
  +install: install-recursive
  +install-exec: install-exec-recursive
  +install-data: install-data-recursive
  +uninstall: uninstall-recursive
  +
  +install-am: all-am
  +	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  +
  +installcheck: installcheck-recursive
  +install-strip:
  +	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  +	  INSTALL_STRIP_FLAG=-s \
  +	  `test -z '$(STRIP)' || \
  +	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  +mostlyclean-generic:
  +
  +clean-generic:
  +
  +distclean-generic:
  +	-rm -f Makefile $(CONFIG_CLEAN_FILES)
  +
  +maintainer-clean-generic:
  +	@echo "This command is intended for maintainers to use"
  +	@echo "it deletes files that may require special tools to rebuild."
  +clean: clean-recursive
  +
  +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  +	mostlyclean-am
  +
  +distclean: distclean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +distclean-am: clean-am distclean-compile distclean-depend \
  +	distclean-generic distclean-hdr distclean-libtool \
  +	distclean-tags
  +
  +dvi: dvi-recursive
  +
  +dvi-am:
  +
  +info: info-recursive
  +
  +info-am:
  +
  +install-data-am:
  +
  +install-exec-am: install-libLTLIBRARIES
  +
  +install-info: install-info-recursive
  +
  +install-man:
  +
  +installcheck-am:
  +
  +maintainer-clean: maintainer-clean-recursive
  +	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
  +	-rm -rf autom4te.cache
  +maintainer-clean-am: distclean-am maintainer-clean-generic
  +
  +mostlyclean: mostlyclean-recursive
  +
  +mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  +	mostlyclean-libtool
  +
  +uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
  +
  +uninstall-info: uninstall-info-recursive
  +
  +.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
  +	clean-generic clean-libLTLIBRARIES clean-libtool \
  +	clean-recursive dist dist-all dist-gzip distcheck distclean \
  +	distclean-compile distclean-depend distclean-generic \
  +	distclean-hdr distclean-libtool distclean-recursive \
  +	distclean-tags distcleancheck distdir dvi dvi-am dvi-recursive \
  +	info info-am info-recursive install install-am install-data \
  +	install-data-am install-data-recursive install-exec \
  +	install-exec-am install-exec-recursive install-info \
  +	install-info-am install-info-recursive install-libLTLIBRARIES \
  +	install-man install-recursive install-strip installcheck \
  +	installcheck-am installdirs installdirs-am \
  +	installdirs-recursive maintainer-clean maintainer-clean-generic \
  +	maintainer-clean-recursive mostlyclean mostlyclean-compile \
  +	mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
  +	tags tags-recursive uninstall uninstall-am uninstall-info-am \
  +	uninstall-info-recursive uninstall-libLTLIBRARIES \
  +	uninstall-recursive
  +
  +# Tell versions [3.59,3.63) of GNU make to not export all variables.
  +# Otherwise a system limit (for SysV at least) may be exceeded.
  +.NOEXPORT:
  
  
  
  1.6       +16 -1     ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.cpp
  
  Index: TestTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TestTransport.cpp	9 Sep 2003 12:53:01 -0000	1.5
  +++ TestTransport.cpp	2 Oct 2003 06:06:16 -0000	1.6
  @@ -65,7 +65,8 @@
   #include "../../../../soap/SoapSerializer.h"
   #include <fstream>
   #include <string>
  -//#include "../../../../common/AxisTrace.h"
  +#include <AxisTrace.h>
  +#include <AxisException.h>
   
   using namespace std;
   
  @@ -112,3 +113,17 @@
   {
      m_Option = OptionList;
   }
  +
  +int TestTransport::Init()
  +{
  +	//do any initialization, resetting of values
  +
  +	return SUCCESS;
  +}
  +
  +int TestTransport::Fini()
  +{
  +	//do any finalizatoin
  +
  +	return SUCCESS;
  +}
  \ No newline at end of file
  
  
  
  1.4       +2 -0      ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.h
  
  Index: TestTransport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/handlers/transport/testhandler2/TestTransport.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestTransport.h	4 Sep 2003 06:51:41 -0000	1.3
  +++ TestTransport.h	2 Oct 2003 06:06:16 -0000	1.4
  @@ -72,6 +72,8 @@
   	virtual ~TestTransport();
     int Invoke(IMessageData* pMsg);
     void OnFault(IMessageData* pMsg);
  +  int Init();
  +  int Fini();
   
     string GetOption(string sArg);
     void SetOption(string sOption, string Value);
  
  
  
  1.1                  ws-axis/c/src/server/handlers/transport/testhandler2/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libtesthandler2.la
  SUBDIRS =
  AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
  libtesthandler2_la_SOURCES = TestTransport.cpp TestHandler2.cpp
  
  libtesthandler2_la_LIBADD   =  -L$(AXISCPP_HOME)/lib/xerces-c -lxerces-c -ldl $(AXISCPP_HOME)/release/libaxiscpp_mod.la
  INCLUDES = -I$(AXISCPP_HOME)/include -I$(AXISCPP_HOME)/src/common
  
  
  
  1.1                  ws-axis/c/src/server/handlers/transport/testhandler2/autogen.sh
  
  Index: autogen.sh
  ===================================================================
  #! /bin/sh
  
  # $Id: autogen.sh,v 1.1 2003/10/02 06:06:16 damitha Exp $
  #
  # Copyright (c) 2002  Daniel Elstner  <da...@gmx.net>
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License VERSION 2 as
  # published by the Free Software Foundation.  You are not allowed to
  # use any other version of the license; unless you got the explicit
  # permission from the author to do so.
  #
  # This program is distributed in the hope that it will be useful,
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  # GNU General Public License for more details.
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  
  
  dir=`echo "$0" | sed 's,[^/]*$,,'`
  test "x${dir}" = "x" && dir='.'
  
  if test "x`cd "${dir}" 2>/dev/null && pwd`" != "x`pwd`"
  then
      echo "This script must be executed directly from the source directory."
      exit 1
  fi
  
  rm -f config.cache acconfig.h
  
  echo "- libtoolize."		&& \
  libtoolize --force		&& \
  echo "- aclocal."		&& \
  aclocal				&& \
  echo "- autoconf."		&& \
  autoconf			&& \
  echo "- autoheader."		&& \
  autoheader			&& \
  echo "- automake."		&& \
  automake --add-missing --gnu	&&
  #echo				&& \
  #./configure "$@"		&& exit 0
  
  exit 1
  
  
  
  
  1.1                  ws-axis/c/src/server/handlers/transport/testhandler2/configure.ac
  
  Index: configure.ac
  ===================================================================
  AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
  AM_INIT_AUTOMAKE(0.3)
  AM_CONFIG_HEADER(config.h)
  
  AC_PROG_CC
  AC_PROG_CXX
  AC_PROG_INSTALL
  AC_PROG_LIBTOOL
  AC_OUTPUT(Makefile)
  
  
  
  1.1                  ws-axis/c/src/server/handlers/transport/testhandler2/runconfig
  
  Index: runconfig
  ===================================================================
  #!/bin/bash
  configure --libdir=$AXISCPP_HOME/src/server/handlers/transport/testhandler2/lib