soap_message.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: soap_message.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:16:26  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef SOAP_MESSAGE__HPP
  10. #define SOAP_MESSAGE__HPP
  11. /*  $Id: soap_message.hpp,v 1000.1 2004/04/12 17:16:26 gouriano Exp $
  12. * ===========================================================================
  13. *
  14. *                            PUBLIC DOMAIN NOTICE
  15. *               National Center for Biotechnology Information
  16. *
  17. *  This software/database is a "United States Government Work" under the
  18. *  terms of the United States Copyright Act.  It was written as part of
  19. *  the author's official duties as a United States Government employee and
  20. *  thus cannot be copyrighted.  This software/database is freely available
  21. *  to the public for use. The National Library of Medicine and the U.S.
  22. *  Government have not placed any restriction on its use or reproduction.
  23. *
  24. *  Although all reasonable efforts have been taken to ensure the accuracy
  25. *  and reliability of the software and data, the NLM and the U.S.
  26. *  Government do not and cannot warrant the performance or results that
  27. *  may be obtained by using this software or data. The NLM and the U.S.
  28. *  Government disclaim all warranties, express or implied, including
  29. *  warranties of performance, merchantability or fitness for any particular
  30. *  purpose.
  31. *
  32. *  Please cite the author in any work or product based on this material.
  33. *
  34. * ===========================================================================
  35. *
  36. * Author: Andrei Gourianov
  37. *
  38. * File Description:
  39. *   Hold the content of, send and receive SOAP messages
  40. */
  41. #include <serial/serialbase.hpp>
  42. BEGIN_NCBI_SCOPE
  43. class CSoapMessage : public CObject
  44. {
  45. public:
  46.     CSoapMessage(void);
  47.     ~CSoapMessage(void);
  48.     typedef vector< CConstRef<CSerialObject> > TSoapContent;
  49.     enum EMessagePart {
  50.         eMsgHeader,
  51.         eMsgBody,
  52.         eFaultDetail
  53.     };
  54. // attributes
  55.     static const string& GetSoapNamespace(void);
  56.     void SetSoapNamespacePrefix(const string& prefix);
  57.     const string& GetSoapNamespacePrefix(void) const;
  58. // writing
  59.     void AddObject(const CSerialObject& obj, EMessagePart destination);
  60.     void Write(CObjectOStream& out) const;
  61. // reading
  62.     void RegisterObjectType(TTypeInfoGetter type_getter);
  63.     void RegisterObjectType(const CTypeInfo& type);
  64.     void RegisterObjectType(const CSerialObject& obj);
  65.     void Read(CObjectIStream& in);
  66. // data access
  67.     void Reset(void);
  68.     const TSoapContent& GetContent(EMessagePart source) const;
  69.     CConstRef<CSerialObject> GetSerialObject(const string& type_name,
  70.                                              EMessagePart source) const;
  71.     CConstRef<CAnyContentObject> GetAnyContentObject(const string& name,
  72.                                                      EMessagePart source) const;
  73. private:
  74.     string m_Prefix;
  75.     TSoapContent m_Header;
  76.     TSoapContent m_Body;
  77.     TSoapContent m_FaultDetail;
  78.     vector< const CTypeInfo* >  m_Types;
  79.     static const string& ms_SoapNamespace;
  80. };
  81. inline
  82. CObjectOStream& operator<< (CObjectOStream& out, const CSoapMessage& object)
  83. {
  84.     object.Write(out);
  85.     return out;
  86. }
  87. inline                     
  88. CObjectIStream& operator>> (CObjectIStream& in, CSoapMessage& object)
  89. {
  90.     object.Read(in);
  91.     return in;
  92. }
  93. END_NCBI_SCOPE
  94. #endif  /* SOAP_MESSAGE__HPP */
  95. /* --------------------------------------------------------------------------
  96. * $Log: soap_message.hpp,v $
  97. * Revision 1000.1  2004/04/12 17:16:26  gouriano
  98. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.3
  99. *
  100. * Revision 1.3  2003/12/04 20:55:02  gouriano
  101. * correct parameter names
  102. *
  103. * Revision 1.2  2003/09/25 19:46:21  gouriano
  104. * Added soap Fault object
  105. *
  106. * Revision 1.1  2003/09/22 20:58:20  gouriano
  107. * Initial revision
  108. *
  109. *
  110. * ===========================================================================
  111. */