Hi,
I'm building a two-way communication bridge between a Perspective view and an embedded HTML page (via the Iframe component), using the WebDev module :
Perspective View --> HTML Page : OK
HTML Page --> Perspective View : NOPE
WebDev Python resource (doPost) receives the POST, decodes the JSON body, and calls system.perspective.sendMessage() with an explicit sessionId passed from the client.
Message Handler is set up on the view, scope session, listening for the matching message type, and does self.view.custom.config = payload['data'].
Is there any solution for that ?