X-CGP-ClamAV-Result: CLEAN X-VirusScanner: Niversoft's CGPClamav Helper v1.22.2a (ClamAV engine v0.102.2) X-Junk-Score: 0 [] X-KAS-Score: 0 [] From: "Jesse Tayler" Received: from mail-qv1-f54.google.com ([209.85.219.54] verified) by selbstdenker.ag (CommuniGate Pro SMTP 6.3.3) with ESMTPS id 25327466 for webobjects-dev@wocommunity.org; Thu, 28 Jan 2021 14:07:01 +0100 Received-SPF: none receiver=post.selbstdenker.com; client-ip=209.85.219.54; envelope-from=jtayler@oeinc.com Received: by mail-qv1-f54.google.com with SMTP id n14so2706624qvg.5 for ; Thu, 28 Jan 2021 05:07:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oeinc-com.20150623.gappssmtp.com; s=20150623; h=from:mime-version:subject:date:references:to:in-reply-to:message-id; bh=R239r0756CXg+EYsoB0Lx6KtOpouL4r8GRH+mzBKyls=; b=gEhtNrYCnK95tnieEdHpCNbNnf6fEvVnJMey6IRuVhzeRsrQUdZus6F8imWcrgqHqU SemBrdSxOSrhQrC2L+RA600DS2xME+2PPuKr+FZaHhX2kj9l0ayKNeZ8SQ3IFEjP94xy Omy5uP6JD6wTE024ZAnDincAjs+IAlC7dkZasZmsSaGyHtnzfrgsAHFLPTHLnZ+sM7XW WFtHvckzSjfA0zodRlBNNfu/Vkjy7E6NdDSaUPHqzq2JgV+Ut/R0f2qQTk8jwAucnNUY IXZAPNKyOYhI44IZ82udm/a6jX7enHzw8UirYcbJnwP0CY6f+HQ/piAQcsy5quHprH+2 Y7Ng== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:mime-version:subject:date:references:to :in-reply-to:message-id; bh=R239r0756CXg+EYsoB0Lx6KtOpouL4r8GRH+mzBKyls=; b=NoCPG+rLxs++lvESgRYp9wUlkRJpHIF59AAnYkmSCh03wpOSMXX7PbEI8qJp5faaFX J0Q65KVfosH0qHeZ1hciOkym8KkbF/mw2OulG4biT7DgcgySvhVL/7xeOgPoZr6gZxUJ f+crTJUf22lgcaDsVmhOQsJtzUU/0MQ1IB+ivbBaYMAzBIjbBt8A+h/NC9k5iw/PObkL /f69cBM/8mwzA7Y0spP9ipZuW751J8g6TpwPV54YKmcm6kP6biQeZYZX0CFa7cbYSg2M MEAmmj0Xqk8EhzNOJcTXcY/QfwrufV9m97q7A83a9UMmy81p5mhwe0Q2zPgTfEFXGjOZ SvKQ== X-Gm-Message-State: AOAM532dyKfR/slqowTJUGFr2OR/VhRejCwmv9WDwTUjO7vP3uKOSoJR WHogNIBES4/6CMa3xS7a+yr4NukUFl62SA== X-Google-Smtp-Source: ABdhPJxyYWT5SGyAbys3kOkonv05eK7I1pXpF5eMeCkRAJNRbxV+chov9U/yAJ1dwyQ8lqg7DWOYjA== X-Received: by 2002:a05:6214:1110:: with SMTP id e16mr14913193qvs.62.1611839199774; Thu, 28 Jan 2021 05:06:39 -0800 (PST) Return-Path: Received: from [192.168.1.16] ([69.169.5.176]) by smtp.gmail.com with ESMTPSA id 203sm3377339qkd.81.2021.01.28.05.06.38 for (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Thu, 28 Jan 2021 05:06:39 -0800 (PST) Content-Type: multipart/alternative; boundary="Apple-Mail=_1D4CA935-3660-48D7-AF76-23D8399ACF02" Mime-Version: 1.0 (Mac OS X Mail 14.0 \(3654.60.0.2.2\)) Subject: Re: [WO-DEV] Communication between 2 different browers (but same application) Date: Thu, 28 Jan 2021 08:06:38 -0500 References: To: WebObjects & WOnder Development In-Reply-To: Message-Id: <022AECA0-843E-4624-A721-D8340792088B@oeinc.com> X-Mailer: Apple Mail (2.3654.60.0.2.2) --Apple-Mail=_1D4CA935-3660-48D7-AF76-23D8399ACF02 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 It=E2=80=99s not really to do with sessions more that you want to sync = up the user interactions between two points If you want fancy, immediate responses you=E2=80=99d want to setup some = notification system between the two clients If you can tolerate polling style I might just use AJAX and ping to see = if results are changed. > On Jan 28, 2021, at 3:26 AM, Markus Ruggiero (rucotec) = wrote: >=20 > I need some conceptual help. >=20 > Let=E2=80=99s say you have a browser open to a Wonder app (component = based session). Imagine you go to a different computer and open another = session (maybe via direct action) to the same application. I want to = have a button (or some such) in the first window that when clicked = communicates to that second independent window and enables some form = fields there. The user then submits data to the application from that = second window. The first window registers the submission and continues = with the user interaction. >=20 > How would you do something like this? Is this possible at all? = Possibly the second login could be from a mobile device and the = presented browser page does not allow to do more interaction with the = application than just enter some data and submit. The first session is = required do wait for the data (or a cancel) and can then proceed. >=20 > Thanks for any ideas / help > =E2=80=94markus=E2=80=94 >=20 >=20 >=20 >=20 > Markus Ruggiero >=20 > rucotec GmbH web https://rucotec.ch = > Steinenvorstadt 79 email markus.ruggiero@rucotec.ch = > 4051 Basel / Switzerland mobile +41 79 508 4701 >=20 >=20 >=20 >=20 >=20 >=20 >=20 >=20 --Apple-Mail=_1D4CA935-3660-48D7-AF76-23D8399ACF02 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8 It=E2=80=99s not really to do with sessions more that you = want to sync up the user interactions between two points

If you want fancy, = immediate responses you=E2=80=99d want to setup some notification system = between the two clients

If you can tolerate polling style I might just use AJAX and = ping to see if results are changed.



On Jan = 28, 2021, at 3:26 AM, Markus Ruggiero (rucotec) <webobjects-dev@wocommunity.org> wrote:

I need = some conceptual help.

Let=E2=80=99s say you = have a browser open to a Wonder app (component based session). Imagine = you go to a different computer and open another session (maybe via = direct action) to the same application. I want to have a button (or some = such) in the first window that when clicked communicates to that second = independent window and enables some form fields there. The user then = submits data to the application from that second window. The first = window registers the submission and continues with the user = interaction.

How would you do something = like this? Is this possible at all? Possibly the second login could be = from a mobile device and the presented browser page does not allow to do = more interaction with the application than just enter some data and = submit. The first session is required do wait for the data (or a cancel) = and can then proceed.

Thanks for any ideas = / help
=E2=80=94markus=E2=80=94




Markus = Ruggiero

rucotec GmbH              =           web https://rucotec.ch
Steinenvorstadt 79          =       email markus.ruggiero@rucotec.ch
4051 Basel / = Switzerland         mobile +41 79 508 4701









= --Apple-Mail=_1D4CA935-3660-48D7-AF76-23D8399ACF02--