Multi-dimensional arrays are not supported. Use a jagged array instead
-
I got this error message when I tried to browse my web service "Multi-dimensional arrays are not supported. Use a jagged array instead" I need to know why because I have to tell my boss why I spent more in order to convert all the multi-dimensional arrays to jagged arrays
-
I got this error message when I tried to browse my web service "Multi-dimensional arrays are not supported. Use a jagged array instead" I need to know why because I have to tell my boss why I spent more in order to convert all the multi-dimensional arrays to jagged arrays
Possibly because a "straight" multidimensional array is just a specific case of jagged array? A jagged array is an array that contains arrays, and these arrays can be of any length (including all the same). Web Services probably support jagged arrays, because these can be used to implement "straight" m-d arrays as well as anything else, but not the other way round. I have just made this up though, but it sounds plausible :-) Google search on your error returns these, which suggest I'm half right: http://www.vijaymukhi.com/documents/books/xmlsoap/chap3.htm http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=uHzLnB8TDHA.2208%40TK2MSFTNGP11.phx.gbl&rnum=1&prev=/groups%3Fsourceid%3Dnavclient%26ie%3DUTF-8%26oe%3DUTF-8%26q%3D%2522Multi-dimensional%2Barrays%2Bare%2Bnot%2Bsupported.%2BUse%2Ba%2Bjagged%2Barray%2Binstead%2522 -- Ian Darling