[JBoss-dev] RMI-IIOP type restrictions

2003-08-14 Thread Adam Wasserman
Hello all, I am using JBoss 3.2.1 and would like to deploy a stateless session bean using the iiop invoker. The remote interface of this bean makes use of an object with a reference to an array of java.util.Map objects. During deployment, JBoss performs an interface analysis on the remote

Re: [JBoss-dev] RMI-IIOP type restrictions

2003-08-14 Thread Francisco Reverbel
Hi Adam, On Mon, 11 Aug 2003, Adam Wasserman wrote: Hello all, I am using JBoss 3.2.1 and would like to deploy a stateless session bean using the iiop invoker. The remote interface of this bean makes use of an object with a reference to an array of java.util.Map objects. During

Re: [JBoss-dev] RMI-IIOP type restrictions

2003-08-14 Thread Francisco Reverbel
This bug is fixed in CVS Branch_3_2. It affected arrays whose element type corresponds (per the Java to IDL mapping) to an abstract valuetype. BTW: Adam's workaround was effective because he replaced an abstract valuetype (java.util.Map) by a concrete one (java.util.HashMap). Cheers,