-
Notifications
You must be signed in to change notification settings - Fork 176
Description
Related to #509
Majority of Java usage right now is on the server-side, as a backend. Also having an applet-like app is -although great technical wise- not amazing from user experience point of view.
I'm trying to experiment something on this side, which is running a backend server using doppio, and use an iframe in the browser to interact with it. But I'm failing and running out of ideas. Thus I need some help :)
What I'm trying to do? Getting a minimal embedded jetty server into a jar file to run in doppio. It's not working properly but still if it works then it's going nowhere.
It will theoretically open port 8080 on the host machine and listen for connection. But the host is a browser and it does not understand what is listening to port 8080.
I'm trying to fake it to make the process locate the iframe instead and interact with it. In the previous example, that iframe can be as simple as a blank page pointing to localhost:8080 and the end result will be getting <h1>Hello World</h1> in it.