NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: osquiabro on November 27, 2019, 06:30:15 AM

Title: SessionValueSetFromBrowser?
Post by: osquiabro on November 27, 2019, 06:30:15 AM
how is work and for what?
Title: Re: SessionValueSetFromBrowser?
Post by: Bruce on November 29, 2019, 03:47:40 AM
there is a JavaScript function you can call in your JavaScript code;

SetSessionValue(name,value)

the SessionValueSetFromBrowser is for embedding code in the server if you want to when that happens.

cheers
Bruce
Title: Re: SessionValueSetFromBrowser?
Post by: urayoan on December 02, 2019, 05:20:20 AM
there is a JavaScript function you can call in your JavaScript code;

SetSessionValue(name,value)

the SessionValueSetFromBrowser is for embedding code in the server if you want to when that happens.

cheers
Bruce

Bruce, it is possible to have an example or a more specific explanation how this method works or there is an existing example that we can look for?

Thanks
Title: Re: SessionValueSetFromBrowser?
Post by: Bruce on December 02, 2019, 11:17:18 PM
Hi Ura,

if you look in NetWeb.js you'll see examples there. Since this is a JavaScript function the examples are in JavaScript.
As to where you would use it - I guess that's up to you.

Cheers
Bruce

Title: Re: SessionValueSetFromBrowser?
Post by: urayoan on December 03, 2019, 04:52:45 AM
Hi Ura,

if you look in NetWeb.js you'll see examples there. Since this is a JavaScript function the examples are in JavaScript.
As to where you would use it - I guess that's up to you.

Cheers
Bruce

Hi Bruce:
 
Yes i am aware of the SetSessionValue from JavaScript. I think that part is clear for now :)

The part i am not so sure is how to use the SessionValueSetFromBrowser and where.

This is what i found about that call in the forum:
https://www.nettalkcentral.com/forum/index.php?topic=3968.msg14860#msg14860

For example, if i had a function in JavaScript, that function get some values from another server (API call) and i need to send back those values back to the NetTalk webserver.

As far as i understand, NetTalk does not receive returns from JavaScript functions.

How do i know in the NetTalk web server with SessionValueSetFromBrowser when the values are ready to use and are set with SetSessionValue('name','value').

Or i am mistaking that function as an observer, o something smilar to a callback?

Thanks