Bug 3058 - Possible codeset problem when using oneways
Summary: Possible codeset problem when using oneways
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.5.10
Hardware: All All
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2007-08-22 09:23 CDT by Johnny Willemsen
Modified: 2007-08-22 13:36 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2007-08-22 09:23:36 CDT
Not reproduced, but just something I did consider when going trough the code. The codeset information is send only as part of the first invocation from client to server. But, what if the first invocation is a oneway and this doesn't get delivered and then the second one uses unicode data? Then the server hasn't received any codeset information from the client. What would then happen and can we make sure that things work in such a situation?
Comment 1 Johnny Willemsen 2007-08-22 09:24:41 CDT
corrected summary
Comment 2 Phil Mesnier 2007-08-22 09:50:05 CDT
I think that for all connection-oriented transports (all except DIOP?) this should not be a problem. An undelivered oneway might be queued for later sending, in which case a subsequent invocation would cause it to be sent. Or maybe the send fails due to a communication problem, in which case a new invocation would again be the first on a newly re-established connection and again carry the codeset context info. Since the decision to send codeset context info happens very late, as a message is being packaged for send, I think that even if a oneway were discarded due to some policy, such as a timeout, this would happen before the decision to apply codeset context info to the message.

As I recall, DIOP is not connection oriented, and so it might suffer the fate you describe. But even then, TAO relies on default codeset information if no context is received, so there would only be trouble if a non-default codeset were being configured. 

Since there is no way for the server to ACK a codeset context, I think the only way to really address this problem would be to repeatedly send the codeset context, but I think that would have a significant negative impact on performance.
Comment 3 Johnny Willemsen 2007-08-22 13:36:24 CDT
what about changing the flag first message to something else. For example an enum with some states. First, not send, if we then get a oneway, we add the service context to each oneway until we have reached the first twoway, then we do it once again and then not anymore. I haven't checked the exception path, but if things fail during connection setup we have to make that we handle that correctly