Re: Reading POST parameters on GWT app

2008-12-17 Thread Croc
Great , Thanks a lot! On Dec 17, 9:48 pm, "olivier FRESSE" wrote: > The client side of GWT won't help you. > The server side is the GWT RPC mechanism, and it won't help you a lot too. > It depends  of the server technology. > If you're in a java world, best would be to rely on a servlet. They ar

Re: Reading POST parameters on GWT app

2008-12-17 Thread olivier FRESSE
The client side of GWT won't help you. The server side is the GWT RPC mechanism, and it won't help you a lot too. It depends of the server technology. If you're in a java world, best would be to rely on a servlet. They are indeed made to manage such things :-) you would have something like that,

Re: Reading POST parameters on GWT app

2008-12-17 Thread Yair Ohayon
Great , that's exactly what i want to do. How do i parse that parameters on the server ? Maybe this example will clearify what i am searching for some web site ... http://localhost:/com.startup.strhandle/strhandle.html";> User Name ... Action is my gwt app , After submitti

Re: Reading POST parameters on GWT app

2008-12-17 Thread Jason Essington
Correct, you cannot read the post parameters from the client, as they don't really exist. An HTTP post supplies the post parameters as the content of the request (server) and they are no longer available when the response is returned (client) you would have to parse the parameters on the s

Re: Reading POST parameters on GWT app

2008-12-17 Thread Croc
Someone please...? On Dec 16, 10:40 pm, Croc wrote: > Hi All, > I am new to gwt and didn't find how to read post paramters in GWT App. > meaning that i have an html page with uses some input fields (pure > html 0 no java script) and this html is redirecting to my gwt app , i > need to read thos

Reading POST parameters on GWT app

2008-12-16 Thread Croc
Hi All, I am new to gwt and didn't find how to read post paramters in GWT App. meaning that i have an html page with uses some input fields (pure html 0 no java script) and this html is redirecting to my gwt app , i need to read those paramters on the GWT app and respond. I can readt the GET par