#include <it_bus/port.h>
Inheritance diagram for IT_Bus::Port:
Application code will not instantiate an instance of the IT_Bus::Port class. Obtain a reference to the active port from the proxy or ServerOperation instance.
Transactions may be managed through either the IT_Bus::Bus or IT_Bus::Port classes. Use the Port class when a process employs multiple ports that have different transactional behavior.
Definition at line 125 of file port.h.
Public Member Functions | |
virtual const IT_WSDL::WSDLPort & | get_wsdl_port () const =0 |
Return a reference to class representing the port defined in the WSDL file. | |
virtual IT_WSDL::WSDLExtensionElement & | get_configuration ()=0 |
Return a reference to a class derived from IT_WSDL::WSDLExtensionElement. | |
virtual ClientBinding * | get_client_binding ()=0 |
Call this method to apply configuration changes. | |
virtual void | register_servant (Servant &servant)=0 |
Registers a servant against this port/endpoint. | |
virtual Servant * | get_servant ()=0 |
Returns the Servant which is tied to the port/endpoint. | |
virtual ServiceBase * | get_service ()=0 |
Return a pointer to a derived class implementing the ServiceBase superclass. | |
virtual void | register_default_servant (Servant &servant)=0 |
Registers a default servant. | |
virtual void | get_reference_with_id (const String &instance_id, IT_WSDL::WSDLPort &wsdl_port)=0 |
Registers a new addressing context for the default servant to support. |
|
Return a reference to a class derived from IT_WSDL::WSDLExtensionElement.
|
|
Registers a new addressing context for the default servant to support. This will throw a Bus Exception if no default servant has been registered. It will populate the WSDLPort* with new addressing information based on the context passed in. This method is used internally by the runtime when a user calls get_reference_with_id on a Service instance.
|
|
Returns the Servant which is tied to the port/endpoint.
|
|
Return a pointer to a derived class implementing the ServiceBase superclass. ServiceBase is the superclass of the ServerService class. The Service is a typedef of ServerService.
|
|
Return a reference to class representing the port defined in the WSDL file. This is the meta data that describes this endpoint
|
|
Registers a default servant. Use this method when you want to share a single Servant across multiple Services of the same type. It requires that the Servant implementation uses Addressing Context at runtime to distinguish between endpoints.
|
|
Registers a servant against this port/endpoint. The runtime uses this method when tying a Servant to a port as a result of activating a Servant with the Bus.
|