Bug 3908 - JacORB to TAO callback returning Any type fails to marshal when passing a valuetype with a sequence member containing more than one element
Summary: JacORB to TAO callback returning Any type fails to marshal when passing a val...
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.8.2
Hardware: All Windows XP
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2010-10-06 11:03 CDT by Richard Sampson
Modified: 2010-12-12 16:17 CST (History)
0 users

See Also:


Attachments
C++ TAO client and Java JacORB server (116.71 KB, application/x-zip-compressed)
2010-10-06 11:03 CDT, Richard Sampson
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Richard Sampson 2010-10-06 11:03:46 CDT
Created attachment 1318 [details]
C++ TAO client and Java JacORB server

(1) A TAO 1.8 client connects to JacORB 2.3.1 server via a nameservice.
(2) The JacORB server triggers a callback with an Any type argument. Into this Any type is inserted a valuetype which has a member that is a sequence of another valuetype with a length of more than one, i.e. an IDL like the following:

module simple_def 
{	
	valuetype simpleObject 
        {
            public string string1;
	};

        typedef sequence<simpleObject> simpleObjects;

    	valuetype seqObject
        {
            public string string2;
            public simpleObjects seq; 
        };
};


(3) The TAO client fails to marshal the Any with a debug error message "TAO_Marshal_String::skip detected error"
(4) If the previous steps are repeated with the sequence member having a length of one or zero then the error does not occur.

Please find attached the source code for a relatively simple C++ client and Java server that was used to reproduce this problem.
Comment 1 Johnny Willemsen 2010-10-06 12:58:07 CDT
added blocks
Comment 2 Johnny Willemsen 2010-10-06 13:25:48 CDT
3877 is not related
Comment 3 Johnny Willemsen 2010-12-12 16:17:12 CST
Can you try x.8.3?