00001 #ifndef _IT_BUS_PDK_MESSAGING_PORT_H_
00002 #define _IT_BUS_PDK_MESSAGING_PORT_H_
00003
00004
00005
00006
00007 #include <it_bus/api_defines.h>
00008 #include <it_bus/bus.h>
00009 #include <it_bus/qname.h>
00010 #include <it_bus/port.h>
00011 #include <it_bus/port_factory.h>
00012 #include <it_bus/binding_manager.h>
00013 #include <it_bus_pdk/registry.h>
00014 #include <it_bus_pdk/messaging_transport.h>
00015 #include <it_wsdl/wsdl_port.h>
00016
00017 namespace IT_Bus
00018 {
00019 const QName MESSAGING_PORT_MESSAGE_NAME("bus", "messaging_port", "http://schemas.iona.com/bus");
00020
00021 class InterceptorFactory;
00022 class EndpointManager;
00023
00024 class IT_BUS_API MessagingPort : public Port
00025 {
00026 public:
00027 MessagingPort() {}
00028
00029 virtual ~MessagingPort();
00030
00031
00032 virtual void
00033 start_invoke(ClientOperation& data) = 0;
00034
00035 virtual void
00036 assemble_client_interceptors() = 0;
00037
00038 virtual const ServerMessageInterceptorChain&
00039 get_server_message_binding_chain() = 0;
00040
00041 virtual void
00042 add_client_message_interceptor_factory(
00043 InterceptorFactory*
00044 ) = 0;
00045
00046 virtual EndpointManager*
00047 get_endpoint_manager() = 0;
00048
00049 private:
00050
00051
00052
00053 MessagingPort &
00054 operator = (
00055 const MessagingPort& rhs
00056 );
00057
00058 MessagingPort(
00059 const MessagingPort& rhs
00060 );
00061 };
00062 }
00063
00064 #endif