Hi, I'd like to use a sequence of "any"s or unions to pass parameters to my application like this: typedef sequence<any> AnySeq; invoke(in AnySeq parameters); I will only send basic types. So, should I use "any" or union (which consists of the basic types)? Which is the better, faster, etc? /Tamas PS: I've read that "any" has more run-time overhead.