Cutting to the chase: " ... if you are expecting the results of
foo(bar) being executed on Y and Z, initiated by X... are you
expecting the results to be returned and sent back X? ... "
1. Yes, foo(bar) would be executed on Y and Z, initiated by X. (
Function foo(bar) would exist in the web pages currently displayed at
Y and Z. )
2. Nothing wd be returned other than a succeeds/fails value.
I'm gaining the impression that what I describe is a
security/permissions issue - access to the user's current browser page
- and less a data issue. If so, then it's probably impossible in an
http environment, given security protections built into current
browsers. It's the RPC factor that drew my attention.
AS
On 1/5/13, Matt (MPCM) <
wicke...@gmail.com> wrote:
> On Saturday, January 5, 2013 9:17:18 AM UTC-5, A. Shore wrote:
>
>> Guys, be gentle with this noob! (I've been looking a long time for
>> something like this, and a too-quick look tells me that JSON-RPC might
>> work for me in this.)
>>
>
> JSON-RPC is a good fit for this, in terms of the messaging formats. You can
>
> use it for for X,Y, and Z to communicate with your server. With your server
>
> acting as a message exchange hub.
>
> I have a ...