> - The RPC approach - creating http based response
> mechanisms
Hmm, just to clarify:
Is the "RPC approach" something standard to the shindig codebase, even
eventually related to RpcServlet.java?. Or do you mean, simply, things
as
=============
fetchStateDocument("people/"+clavePersona+"/@friends").getDocumentElement();
NodeList friendNodes= (NodeList)
xpath.evaluate("/respuesta/people/person/authenticator", document
, XPathConstants.NODESET);
PersonFriendId= new ArrayList<String>();
for (int j = 0; j < friendNodes.getLength(); j++) {
String friendId = friendNodes.item(j).getTextContent();
if (friendId != null && friendId.trim().length() != 0) {
PersonFriendId.add(friendId.trim());
===============
If the latter, I can provide some examples too, with a couple of hooks
via python into a BOINC ([EMAIL PROTECTED] like) database; it could be of some
use in your guide.
If the former, please do!! I do not understand yet the laberinth of
RPC is gadgets/opensocial.
Alejandro