Re: Passing parameters from JSP to GWT Entry Point

2008-10-24 Thread olivier nouguier
Hi, GWT lives in client space so : * Simple way: In your jsp: script var myVar = %= (String)session.getAttribute(myVar) %; /script And in your module : JNSI.getString(myVar, defaultValue); with the JNSI class: public class JNSI { public static native String getString(String jsVar, String

Passing parameters from JSP to GWT Entry Point

2008-10-23 Thread Sumved
Hi All, I am wondering whether we can pass parameter from JSP to GWT Entry point. I hope it is there because in real scenario probably no-body will use only GWT. Like, I have integrated Struts with GWT. Now, My question is, Can we pass a value from JSP to GWT Entry point? Thanks in advance.