On Thu, Apr 3, 2008 at 1:57 PM, Alejandro Rivero <[EMAIL PROTECTED]>
wrote:
> > - 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
Somewhat related. RpcServlet.java should probably be renamed to something
like "MetadataServlet" to better reflect what it's actually used for. The
idea is similar, though.
>
> =============
>
> 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
>
--
~Kevin