Any idea why a C# client, upon reading the following line from an Axis generated/published WSDL document: --------------------------------------- <element name="rulesElements" nillable="true" type="impl:ArrayOfArrayOf_xsd_string" /> (java impl: String[][] rulesElements;) ---------------------------------------
generates the following C# and/or VB code --------------------------------------- string[] rulesElements; --------------------------------------- Obviously, when when the serialization/deserialization occurs on the client side, it totally arfs. Anyone seen this? Of course with a Java client (generated using wsdl2java), all works well!