Displaying 1 result from an estimated 1 matches for "exapmml".
Did you mean:
exapmmle
2006 Jan 31
0
How to use nested arrays in ActionWebService?
...data structure definition for my web service API that
has - besides others - a nested array of integers: I want to have an
array that contains arrays which themselves contain two integer values.
An example for this is:
[ [1, 2], [2, 400] ]
These values represent a distribution and in this exapmmle this means
that the event "hit 1 time" occured two times and "hit 2 times"
occured 400 times.
When I try to implement this the following way I get an error ("nil
where it was not expected, maybe you wanted an array instead"):
class ProductStatistics < Actio...