Posts by Inês de Matos • 54 points
5 posts
-
1
votes2
answers412
viewsA: How to store variables within the browser cache? (JS)
Beyond the localStorage, also exists the sessionStorage (https://www.w3schools.com/html/html5_webstorage.asp), which turns out to be more secure, since it’s session-based, and complemented with an…
-
-1
votes1
answer392
viewsA: Function is not running in Javascript
The order in which the JS script is referenced in HTML matters. Inserts a.log console before the functions and is seen in the browser command line (F12 in principle/ Inspect element > Console)…
-
1
votes1
answer129
viewsA: Comsumir Web service in SOAP with large volume of data, TIME OUT
Is the webservice outside or is it yours? If it’s from the outside, you don’t have control over it, but instead of having a giant loop, you can have 2 or 3 starting from different places, one at…
-
0
votes1
answer673
viewsA: How to Integrate Frontend with Java?
Generally web applications in Java are made through Javabeans and JPA. You have to build a good business layer, some handlers to handle the information between layers and on the presentation layer…
-
2
votes2
answers657
viewsA: Fix or prevent "Script Error" display
Check if there is any occurrence where the object is Undefined or another object type not supported by the methods you are trying to use. Does console logs. of the object, use JSON.stringify if…