vote up 0 vote down star

I'm trying to assign a js variable to java's request or session and want to access it from the server side. I dont want the js variable to be passed on in the URL. Help me, I'm seeking for a solution.

Thanks in advance

flag
What web framework are you using? – jpartogi Nov 3 at 5:30
did not understand much. But is DWR a solution? – Vijay Dev Nov 3 at 5:59
Please use JavaScript (usually more precisely ECMAScript, or even Javascript) but not "Java script" as this last one makes it seem like that are somehow related even more than it needs to. The real issue is the question is phrased absolutely horridly, sorry :( – pst Nov 3 at 6:28

4 Answers

vote up 0 vote down

The typical most simple way is to use hidden input fields and have your JavaScript fill those input fields with the values you need. When your form gets submitted the hidden input fields will be accessibel in your Java

link|flag
But how will I access it in Java, will it be automatically stored in the session? – unknown (google) Nov 3 at 9:30
The hidden input field is only hidden in your html, once the request goes to your weberver you can treat and retrieve it like any other parameter in a form, aka you retriever it from your request – Peter Nov 3 at 14:00
vote up 1 vote down

It sounds like you need to review the difference between GET and POST variable submission. GET will put it in the address (exmple.com/index.html?var=6) and POST will not. After that you'll have to look at your js library to determine how to direct what the variable hooks up to.

link|flag
vote up 0 vote down

I'm not sure if I understood your question. But if You want asynchronously manipulate "objects in browser" from server it is not possible directly.

There are workarounds, search for reverse ajax.

link|flag
vote up 0 vote down

JavaScript only runs on the browser, it has no connection to the database except for ajax type calls.

But, you can add data to the post request for example from javascript, and that would get to the servlet, which is probably your best solution.

But, this really depends on which javascript library you are using, though, for more details.

link|flag
Actually you can run JS on the server too. Check out the Rhino library: mozilla.org/rhino. – Willie Wheeler Nov 3 at 6:54
True, but if it is running in the browser they still can't just work together without going through a URL, as far as I know. – James Black Nov 3 at 13:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.