0
votes
0answers
29 views

Kerberos authentication between web app and web services

I have applied Kerberos filter for the web app and it is working fine with browser. Now I want my web services to be Kerberos enabled and for this I have applied Kerberos filter in web services and ...
0
votes
0answers
190 views

Facing issues in exporting data to excel

We have a functionality where we are trying to export the data of a grid from UI to an excel sheet. We are using GWT as front end and we are using rest template to send requests. When we hit the ...
1
vote
2answers
798 views

GWT RPC security, http header, authentication and requestbuilder

I am presuming that GWT RPC actually uses RequestBuilder. Is there a way to extract the RequestBuilder instance used by my RPC service async requestor? Actually, my question is, how do you extract ...
0
votes
2answers
435 views

GWT: Integrating 3rd party webservices and exposing via REST / gwt-RPC to gwt-client

I'm a seasoned Java developer but new to GWT. Consider a 3rd party http POST based webservices api, not completely REST based since there's configuration of servlets, among other things, to invoke ...
0
votes
1answer
1k views

smartgwt + gwt-rpc or REST + spring

Hi I am currently working on a project and basing my design proposal on a SOA architecture and am including GWT components for UI . I am new to GWT and after reading through a week of posts of GWT and ...
0
votes
1answer
387 views

Strategy/pattern for committing GWT CellTable changes to server

I've got a GWT CellTable displaying data suppled from a server. As per normal, the CellTable very closely matches the backend table. I'm unsure on a strategy for server commits. The FieldUpdater ...
26
votes
6answers
8k views

Should I build a REST backend for GWT application

I am planning a new application and have been experimenting with GWT as a possible frontend. The design question I am facing is this. Should I use Option A: GWT-RPC and build the app quickly ...