Thanks, Dan. This worked.
I have added an empty check to my get-array methods:
if (things.length == 0)
return null;
return things;
At 08:23 2003.01.07 -0800, you wrote:
I have noticed that a c# .net client does not handle the deserialization of
empty arrays very well. You may be able to 'sid
I have noticed that a c# .net client does not handle the deserialization of
empty arrays very well. You may be able to 'sidestep' this issue not sending
empty arrays.
I have been setting the array to null within a bean instead of sending an
empty array :
Example:
Hope this helps.
Dan Stone