Cheers,Paul--
Quick question: Could the postMessge wrapper be extended to send a message from one browser to another using lap:// ?
Yeah, I think so. Basically that's communicating across sessions, so you'd need a way to identify and reach it. In the Satellite server, I'm creating a unique resource for each session (http://sat-server.com/sessions/21412) so that you could proxy via that uri (lap://app.ui/some/resource via http://sat-server.com/sessions/21412). The satellite would then need a websocket connection to the active session, which could then serve the response. Or, once WebRTC hits, it might serve it P2P.Quick question: Could the postMessge wrapper be extended to send a message from one browser to another using lap:// ?It's a bit complicated, but it should work.
On Tuesday, October 16, 2012 10:42:06 AM UTC-5, Melvin Carvalho wrote:On 16 October 2012 16:53, Paul Frazee <pfr...@gmail.com> wrote:
Hey all,I've been working on a similar project for a while. Just came across Unhosted, so I thought I'd share.It's focused on the security and communication model for cooperative applications. Still fairly unproven, but I'm working on a deployment host and plan to start building apps at Hack TX this weekend.
Looks very interesting!
Quick question: Could the postMessge wrapper be extended to send a message from one browser to another using lap:// ?
Cheers,Paul--
--
interesting that you don't use cross-origin ajax, but rather a sort of
cross-webworker ajax, is that right? so you have one page that's sort
of the host, and that manages apps inside webworkers?
i'm think it would really help to see it working in order to exactly understand how
it fits together