I know how to use it on the Client side. How do I access the SessionStorage on the XData server ?
Do you mean the SessionStorage in WebCore? This is a browser concept and just gives you a way to hold values within a session or across sessions in the browser you are using. If you switch to a new browser then those variables won't be available.
The XData server is sessionless and doesn't know about the data stored on the browser. You would need to send the data to the server from your webcore app and have a method to store it on the server if you needed further access to it.
1 Like
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.