1 #include "tao/Messaging/MessagingS.h"
2 #include "tao/DynamicInterface/DII_Reply_Handler.h"
3 #include "tao/DynamicInterface/AMH_DSI_Response_Handler.h"
5 class My_DII_Reply_Handler
: public virtual TAO_DII_Reply_Handler
,
6 public virtual Messaging::ReplyHandler
8 // Used to handle replies from the server and to complete the
9 // call back to the client.
12 My_DII_Reply_Handler (TAO_AMH_DSI_Response_Handler_ptr rph
,
14 virtual ~My_DII_Reply_Handler (void);
16 // Callback method for deferred synchronous requests.
17 virtual void handle_response (TAO_InputCDR
&incoming
);
18 virtual void handle_excep (TAO_InputCDR
&incoming
,
19 CORBA::ULong reply_status
);
22 TAO_AMH_DSI_Response_Handler_var response_handler_
;