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 2004/03/25 17:03:50 UTC

cvs commit: ws-axis/c/src/engine/server ServerAxisEngine.h

damitha     2004/03/25 08:03:50

  Added:       c/src/engine/server ServerAxisEngine.h
  Log:
  
  
  Revision  Changes    Path
  1.1                  ws-axis/c/src/engine/server/ServerAxisEngine.h
  
  Index: ServerAxisEngine.h
  ===================================================================
  // ServerAxisEngine.h: interface for the ServerAxisEngine class.
  //
  //////////////////////////////////////////////////////////////////////
  
  #if !defined(AFX_SERVERAXISENGINE_H__8E421346_17A9_47EF_9003_6DC9C6F7787A__INCLUDED_)
  #define AFX_SERVERAXISENGINE_H__8E421346_17A9_47EF_9003_6DC9C6F7787A__INCLUDED_
  
  #include <axis/server/AxisEngine.h>
  /**
      @class ServerAxisEngine
      @brief interface for the ServerAxisEngine class.
  
  
      @author Susantha Kumara (skumara@virtusa.com)
  */
  class ServerAxisEngine : public AxisEngine  
  {
  private:
  		BasicHandler* m_pWebService;
  public:
  	ServerAxisEngine();
  	virtual ~ServerAxisEngine();
  public:
  	int Process(Ax_soapstream* soap);
  protected:
  	virtual int Invoke(MessageData* pMsg);
  	virtual void OnFault(MessageData* pMsg);
  };
  
  #endif // !defined(AFX_SERVERAXISENGINE_H__8E421346_17A9_47EF_9003_6DC9C6F7787A__INCLUDED_)