00001 #ifndef _IT_BUS_CONFIG_XML_FORMAT_WSDL_BINDING_H_
00002 #define _IT_BUS_CONFIG_XML_FORMAT_WSDL_BINDING_H_
00003
00004
00005
00006
00007 #include <it_wsdl/wsdl_port.h>
00008
00009 #if !defined(IT_SOAP_API)
00010 #if defined(IT_SOAP_API_EXPORT)
00011 #define IT_SOAP_API IT_DECLSPEC_EXPORT
00012 #else
00013 #define IT_SOAP_API IT_DECLSPEC_IMPORT
00014 #endif
00015 #endif
00016
00017 namespace IT_Bus
00018 {
00023 class IT_SOAP_API XMLFormatWSDLBinding : public IT_WSDL::WSDLExtensionElement, public XMLNode
00024 {
00025 public:
00026
00027 XMLFormatWSDLBinding(
00028 IT_WSDL::WSDLExtensibleNode & parent
00029 );
00030
00031 virtual ~XMLFormatWSDLBinding();
00032
00033
00034 bool
00035 parse(
00036 const XMLIterator & element_iterator,
00037 const IT_Bus::XMLNode & element,
00038 IT_WSDL::WSDLErrorHandler & error_handler
00039 );
00040
00041 virtual void
00042 read(
00043 const IT_Bus::QName& ,
00044 IT_Bus::ComplexTypeReader&
00045 ) throw((IT_Bus::DeserializationException))
00046 {
00047 throw IT_Bus::DeserializationException("Not Supported");
00048 }
00049
00050 virtual void
00051 write(
00052 const IT_Bus::QName& ,
00053 IT_Bus::ComplexTypeWriter&
00054 ) const throw((IT_Bus::SerializationException))
00055 {
00056
00057 }
00058
00066 static const XMLFormatWSDLBinding*
00067 get_from_port(
00068 const IT_WSDL::WSDLPort& wsdl_port
00069 );
00070
00074 virtual void
00075 write_attributes(
00076 IT_Bus::XMLOutputStream & stream
00077 ) const throw((IOException));
00078
00084 const QName &
00085 get_root_node_name() const;
00086
00105 virtual const IT_Bus::QName &
00106 get_element_name() const;
00107
00114 virtual const IT_Bus::String &
00115 get_target_namespace() const;
00116
00117 virtual
00118 IT_WSDL::WSDLExtensionFactory &
00119 get_extension_factory();
00120
00121 virtual void
00122 write(
00123 IT_Bus::XMLOutputStream & stream
00124 ) const throw((IOException));
00125
00131 virtual
00132 IT_Bus::AnyType&
00133 copy(
00134 const IT_Bus::AnyType&
00135 )
00136 {
00137 return *this;
00138 }
00139
00140 protected:
00141
00142 IT_WSDL::WSDLExtensibleNode & m_wsdl_extensible_node;
00143
00144 private:
00145
00146 QName m_root_name;
00147
00148 XMLFormatWSDLBinding &
00149 operator = (
00150 const XMLFormatWSDLBinding& rhs
00151 );
00152
00153 XMLFormatWSDLBinding (
00154 const XMLFormatWSDLBinding& rhs
00155 );
00156 };
00157 }
00158
00159 #endif