Re: Problem in a Simple webservice: 1D array works 2D fails

2007-10-23 Thread Justin Hinerman
Was there a solution found for this problem? ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf

Re: Problem in a Simple webservice: 1D array works 2D fails

2007-10-23 Thread Justin Hinerman
Anyone found a real solution to the 2d array problem? >Hi we've been working on this and I get to post. > > > >Mackenzie > > > >Sigh. I'm having a problem returning an array from a webservice. It works >when the array is only 1 dimension. When the array > > > >has 2 dimensions it does not work

Re: Problem in a Simple webservice: 1D array works 2D fails

2005-10-30 Thread John C. Bland II
You may want to look at using custom types. http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?href=1549.htm I was working on something similar and in research it seemed as if custom types would fix it for me. That portion of the app hasn't been created

Re: Problem in a Simple webservice: 1D array works 2D fails

2005-10-28 Thread Will Tomlinson
>Thanks to everyone else for suggesting other data structures that work. I >did some testing and there is no problem with Structs of Structs and other >combinations, but the designer wants as simple and portable a solution as >possible, so it's back to see what I can do to make the 2D Array work.

RE: Problem in a Simple webservice: 1D array works 2D fails

2005-10-28 Thread Mackenzie Cosens
ild a webservice in Coldfusion that sends back a 2DArray, if so how did you get it to work? Thanks again Mackenzie Cosens -Original Message- From: Robert Munn [mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 3:42 PM To: CF-Talk Subject: Re: Problem in a Simple webservice: 1D

Re: Problem in a Simple webservice: 1D array works 2D fails

2005-10-27 Thread James Holmes
A query might work too (which is a 2d array with named columns, if you like to think of it that way). On 10/28/05, Will Tomlinson <[EMAIL PROTECTED]> wrote: > >Sigh. I'm having a problem returning an array from a webservice. It works > >when the array is only 1 dimension. When the array > > >has 2

Re: Problem in a Simple webservice: 1D array works 2D fails

2005-10-27 Thread Will Tomlinson
>Sigh. I'm having a problem returning an array from a webservice. It works >when the array is only 1 dimension. When the array >has 2 dimensions it does not work. I'm thinking that 2D arrays are >supported... Could you use a Structure instead of an array? Will ~~~

Re: Problem in a Simple webservice: 1D array works 2D fails

2005-10-27 Thread Robert Munn
I was able to replicate this error on CFMX 6.1. According to the Apache Axis documentation, 2D array support needs to be enabled through the global Axis config. See this document: http://ws.apache.org/axis/java/reference.html Note that 2d array support is disabled by default. Here is the rele