Based upon the AppDataService interface, you should be able to do
multiple fields in one call. But code such as:
req.add(req.newUpdatePersonAppDataRequest("VIEWER", "AppField1",
data1));
req.add(req.newUpdatePersonAppDataRequest("VIEWER", "AppField2",
data2));
req.add(req.newUpdatePersonAppDataRequest("VIEWER", "AppField3",
data3));
results in 3 separate calls to AppDataService.updatePersonData. The
problem here is that I have correlated fields that need to be checked
together, and I can't do that over 3 separate calls.
What is the proper set of calls in the gadget spec that would result in
1 call in Shindig-java?
Thanks
Jeff Wang