Bug 3908

Summary: JacORB to TAO callback returning Any type fails to marshal when passing a valuetype with a sequence member containing more than one element
Product: TAO Reporter: Richard Sampson <richard.sampson>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 1.8.2   
Hardware: All   
OS: Windows XP   
Attachments: C++ TAO client and Java JacORB server

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?