Hi
Hello Emilio,
There is no concept of Session in Mobile. Mobile apps run on the device (client-side) while Session variables are stored in the server. So the notion of Session variables in the context of mobile doesn't exist.
Everytime the device calls the server, it is a different Web Request. So all of the session variables stored before will be lost.
This is actually one of the major differences between Mobile / Reactive Web applications and Traditional Web applications. Sessions apply only for Traditional Web applications.
Most likely, you may use the Local Storage to save that information (list of document numbers) so it is available on your application.
Kind regards,
Rui Barradas