eyedol wrote:this is what is returned. Not sure what that is. Any insight???
{results=[Ljava.lang.Object;@4339de68, paging={items=[Ljava.lang.Object;@433961a0, total=[Ljava.lang.Object;@43395870, array=[Ljava.lang.Object;@43395d08}}
hi,
your server returned one struct that can be
casted to java.util.Map<String, Object>.
this map contains two items:
- results - which is Object [] array
- paging - which is another Map<String, Object>
'paging' item contains three items:
- items
- total
- array
all of them are Object[] arrays.
i cannot say what those Object[] arrays contain - it can be primitive types or another containers - you should iterate over them and see what's inside or you could capture the whole http server response - i use for that linux tool ngrep, you can use e.g. ethereal.
hope this helps.