Here is class to read response from netConnection.Call:
Code:
public class getCompleteParkOfUser : IPendingServiceCallback
{
public void ResultReceived(IPendingServiceCall call)
{
object result = call.Result;
MessageBox.Show("Server response: " + result);
ArrayCollection items = result as ArrayCollection;
foreach (object item in items)
{
MessageBox.Show("");
}
}
}
result is good:

but result won't be saved as ArrayCollection:

In effect i can't read response.
bump?:>