I have an applet that I want to maintain a socket connection between multiple web pages. Currently, when a transition is made to a different page, the socket connection is closed. Is there anyway of maintaining that connection between web pages? Or, do you have to reconnect the socket after each web page transition?
Share
Unless you can put the applet in a separate frame or load the rest of the page via AJAX, the applet is being reloaded when the page is. So no, there really isn’t a way.