Summary: | Server_Request objects in TAO are too "magical" | ||
---|---|---|---|
Product: | TAO | Reporter: | Ossama Othman <ossama.othman> |
Component: | ORB | Assignee: | Jeff Parsons <parsons> |
Status: | RESOLVED FIXED | ||
Severity: | enhancement | ||
Priority: | P4 | ||
Version: | 1.0 | ||
Hardware: | All | ||
OS: | All | ||
Bug Depends on: | |||
Bug Blocks: | 621 |
Description
Ossama Othman
1999-07-26 18:03:12 CDT
This is a valid enhacement request, i'm marking it as accepted but their implementation is deferred I thought about this problem a bit. The real issue is that there is no reason to use Server_Request to communicate between the low level components in the ORB (Pluggable Protocols + GIOP) to the POA. We could use a TAO specific data structure to pass whatever information is required, CORBA::ServerRequest is only needed in the DSI path, where it could be allocated by the PortableServer::DynamicImplementation, just before calling the _dispatch() method. I believe that Jeff already solved this problem, if that is the case he should mark it as solved. Server_Request is no longer used for all requests, it is now reserved for DSI requests only, and has been moved to the DynamicInterface library. Regular server requests in TAO are now handled by a new class TAO_ServerRequest, which contains no DSI functionality. |