Date: 2005-03-15T08:50:43
Editor: DinoChiesa
Wiki: Apache Web Services Wiki
Page: DotNetInteropArrays
URL: http://wiki.apache.org/ws/DotNetInteropArrays
no comment
Change Log:
------------------------------------------------------------------------------
@@ -110,5 +110,16 @@
directly, rather than a structure containing an array (ie, an operation
like {{{String[] getInfo()}}} rather than {{{ Container getInfo()}}}). This
may still be present in AXIS V1.2RC3. Dims?
+-----------------------------------------------------------
+All of the above supposes that you are doing '''WSDL First'''. This may not
be the case. If not, then you should structure your Java code so that it
reflects what AXIS would generate if you did actually use WSDL2''''''Java to
generate the AXIS code. This means Java''''''Bean type classes, with setters
and getters as above for the arrays. Be sure to get the indexed setter+getter
as well as the array setter+getter.
+
+When you then generate WSDL from such Java classes, you will get what is
reflected in the above examples.
+
+
+
+
+
+
+