I should start by saying I'm still getting used to Perspective/Web development, so maybe this isn't particularly difficult, but any help would be appreciated.
We have a project that involves scanning UUIDs around our facility, putting those UUIDs into a staging list, and running that list through an interface which runs an API. This part of the project is working.
A large goal that has eluded us is to address when network access is lost when running around our facility. When this happens, we would like to save the staging list of UUIDs to a cookie; allowing the user to restore that list when connection is restored.
We've done research and found the common way to do this through Java libraries is through servlets:
Handling Cookies and a Session in a Java Servlet | Baeldung
Chapter 13: Simple Web Applications — Definitive Guide to Jython latest documentation
How to use Cookies in Java web application (codejava.net)
I can follow the basics of these sites, but I've struggled to understand how to put it all in the context/structure of Ignition. Has anyone done something like this? Can you build a Servlet in Ignition? We have the webdev module, but I'm not sure how to utilize it for a project like this. Thanks for any help or pointers, I will be the first to admit this side of development is pretty foreign to me.