Re: Redirecting to jsp

2011-02-26 Thread Prashant Hegde
Not sure if the following is the most elegant way, but it will work as we have done this in our app. I am assuming you want to post to a URL from GWT client to another domain different from your server ( say to a payment gateway which is why we did this). 1) In your Window.open you call a JSP. In

Re: Redirecting to jsp

2011-02-26 Thread Deepak Singh
Any help on this pls. On Fri, Feb 25, 2011 at 8:58 PM, Deepak Singh wrote: > Hi, > > In my celltable, i have one button column. > In the fieldAdapter(), i am opening a new window using Window.open(" url", > "_blank", ""); > It opens a new window withe the url using the http get() method. I want t

Redirecting to jsp

2011-02-25 Thread Deepak Singh
Hi, In my celltable, i have one button column. In the fieldAdapter(), i am opening a new window using Window.open(" url", "_blank", ""); It opens a new window withe the url using the http get() method. I want to open this window with http post() method. How can i acheive this ? I think it is not p