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 sa...@apache.org on 2004/10/06 11:56:45 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/server/cpp AxisBench.cpp

samisa      2004/10/06 02:56:45

  Modified:    c/tests/auto_build/testcases/server/cpp AxisBench.cpp
  Log:
  Added echo logic to be used as AxisBench server side test.
  
  Revision  Changes    Path
  1.2       +38 -0     ws-axis/c/tests/auto_build/testcases/server/cpp/AxisBench.cpp
  
  Index: AxisBench.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/AxisBench.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AxisBench.cpp	24 Sep 2004 13:24:10 -0000	1.1
  +++ AxisBench.cpp	6 Oct 2004 09:56:45 -0000	1.2
  @@ -0,0 +1,38 @@
  +/*
  + * This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
  + * This file contains definitions of the web service
  + */
  +
  +#include "AxisBench.h"
  +
  +
  +AxisBench::AxisBench()
  +{
  +}
  +
  +AxisBench::~AxisBench()
  +{
  +}
  +
  +/* This function is called by the AxisEngine when something went wrong
  + with the current web service request processing. Appropriate actions should
  + be taken here.*/
  +void AxisBench::onFault()
  +{
  +}
  +/* This function is called by the AxisEngine when this web service
  + library is first loaded. So here we can initialize any global/static
  + data structures of this web service or open database connections */
  +void AxisBench::init()
  +{
  +}
  +/* This function is called by the AxisEngine when this web service
  + library is unloaded. So we can deallocate any global/static data structures
  + and close database connections etc here. */
  +void AxisBench::fini()
  +{
  +}
  +BenchDataType* AxisBench::doBenchRequest(BenchDataType* Value0)
  +{
  +    return Value0;
  +}