I have a java web application with jsp frontend. I want to use Dart as frontend instead of jsp.
I made Dart invoke java through a Jersey web service. I had success calling the java web service and display java data in the browser through Dart HttpRequest.
In java/jsp I'm using the session to store some information.
The next step, where I'm stuck, is session management with Dart.
I cannot manage to keep the java session from Dart HttpRequest
.
Is there a way to maintain the java session from Dart HttpRequest
?
I cannot remove the dependency from the java session and implement a REST service.