Tagged Questions
0
votes
0answers
26 views
GWT Asynchronouscallback timeout issue: Always going in OnFailure()
I am new to GWT. I have written a piece of code which makes asynchronous calls to the server. The server side code is running fine as seen through the logs. But on the client side I am getting a ...
0
votes
1answer
23 views
GWT RPC XSRF protection
After adding GWT RPC XSRF protection what should be different in the RPC calls?
I followed the changes mentioned in this post(GWT (2.4.0) + XSRF and ...
0
votes
2answers
42 views
ClassNotFoundException for RPC with GoogleAppEngine
I tried to deploy a locally working application to the GAE GoogleAppEngine. It already runs fine there, except for the RPC calls. They all throw ClassNotFoundExceptions.
I'm just making RPC using ...
0
votes
2answers
48 views
GWT with XS. No POST, Just OPTIONS. Load cancelled
I have a problem with a GWT Application which is rather simple but using the Cross-Site-Scripting mechanism of gwt in conjunction with the GWT-RPC (Async-Interface).
The Problem is, that the Browser ...
0
votes
0answers
31 views
GWT RPC not working properly on Internet Explorer
I have developed a application in GWT 2.5.0. Its working perfectly fine in chrome and firefox, but when being tested in IE, the RPC fails. I tried to debug the app and found that IE is trimming down ...
1
vote
1answer
35 views
GAE - Should I chain asynchronous callbacks?
I'm new to using asynchronous callbacks and I'm not sure if what I'm planning out is the appropriate way to go about doing things. I'm working with Google App Engine along with Google Web Toolkit, and ...
0
votes
2answers
65 views
Best Practice for implementing ClickHandlers for Many Buttons
I am currently designing a remote for a NAO robot with GWT and I'm looking for best practices to execute the supposed method of a button via a RPC. Currently I'm checking the buttons name with the ...
1
vote
3answers
69 views
GWT RPC AsynCallback skips onSucces and onFail methods
I've try to code a GWT application and I need to use RPC to get results from server side. I followed the GWT RPC tutorial and end up with some goods. But when I debug my program, I saw that my program ...
0
votes
1answer
87 views
GWT Upload/Download best practices
So I am new to GWT and am not sure what the best programming practices are for what I am trying to do. In my web application the user will be able to upload a data file, my application needs to be ...
1
vote
1answer
130 views
How to make an GWT server call(GWT RPC?) [closed]
Hi I am new to gwt(java based gui).
Here i am trying to make a GWT server call.
I want to save my MyBean into my Database.
Later on i have to update,delete etc..
What are the possibilities and how ...
0
votes
1answer
71 views
Vaadin GWT RPC setup?
I've been using smartGWT for a few years but have started looking at Vaadin. I've got the example running but am stumped when it comes to writing the RPC call.
I have a connector:
public class ...
0
votes
1answer
55 views
Will an gwt rpc call ALWAYS callback to either my onsuccess or onfail methods?
I have implemented the suggestion in this post and disable my button after the the first click. How to prevent DoubleSubmit in a GWT application?
What i want to know is with my button reenabled in ...
0
votes
1answer
108 views
I am getting an Exception while dispatching incoming RPC call
Inside my server logic I am trying to call a map reduce job.
KMeansClustering.startClustering(centerForClustering);
I keep getting this error, not sure why
[WARN] Server class ...
0
votes
1answer
106 views
POST call to HttpServlet within server method, generate iText document from byte array and redirect client to download it
Basically, I have a web application that must generate large *.pdf reports. It's being hosted on Google App Engine, and I'm using Google Web Toolkit to deploy it. The client calls getReport() method ...
0
votes
1answer
54 views
GWT returning custom objects that implement interfaces from external jars
I'm trying to implement an application that would read some path from the server and show it as a tree in web. For the client side I'm using Sencha GXT Tree that uses a TreeStore.
I saw this ...
0
votes
2answers
59 views
GWT RPC failure
I'm trying to build a war of my GWT app using the ant ...
but I'm getting exception as
Exception while dispatching incoming RPC call
com.google.gwt.user.server.rpc.UnexpectedException: Service ...
1
vote
1answer
277 views
Spring GWT integration
I know this has been asked here quite a few times, but any of the answers could sollve my problem so here i go. (sorry in advanced for the long post).
Hi, im writting the code for a console using GWT ...
0
votes
2answers
52 views
gwt redraw with timer
I'm new to GWT and I have a big problem.
I have a gwt/extjs gwt2.2.0 app. I need to build a chart which will show the real-time information about the quantity of incoming messages every second. ...
0
votes
2answers
160 views
Deploying GWT RPC app in Tomcat
As per the Google tutorial, I have developed the basic StockWatcher application, that makes an RPC call to the server, which sends some data, which is displayed on the client.
I now want to deploy it ...
0
votes
2answers
79 views
GWT - synchronous return of a method
Ok, there isn't synchronous call in GWT.
But if i have something like this:
class XXX {
Config c=new Config();
c.doSomething();
}
and the class Config
public class Config {
private ...
0
votes
1answer
49 views
GWT RPC fails with no error and no exception
I have an RPC service that that logs in a user. If the username and password is valid, everything works great. However, if the username and password is not valid, the server side code seems to execute ...
0
votes
1answer
88 views
GWT RPC ClassNotFoundException while initialize AsyncCallback
this isn't my first RPC try. All others worked well, but I can't figure out, why this doesn't.
public void confirmRequest(String requestId, boolean confirmWithDefault, List<String> ...
2
votes
3answers
283 views
GWT RPC call not working in compiled mode
I am building a GWT app. Previously, whenever I requested an image from the web-page, that request went to a client-class, and that class used to serve the image. This worked for both GWT generated ...
0
votes
2answers
109 views
GWT RPC Call onFailure
I created a Remote Procedure Call. The Server-Side connects to Webservices, to get Information, which it hands over to the Client-Side. This is the Client-Side Code.
public void ...
0
votes
1answer
69 views
GWT RPC call not working when I change the endpoint
I have a simple RPC call that works fine when it is calling into the local server
ContactsServiceAsync rpcService = GWT.create(ContactsService.class);
rpcService.getContactDetails(new ...
0
votes
2answers
165 views
Read properties file from GWT
I got this kind of error. when trying to read a properties file It works fine in development mode but when I trying to deploy app to tomcat this error is comes.
SEVERE: Exception while dispatching ...
1
vote
1answer
92 views
Phonegap RPC setup issue
I am trying to get ann RPC call to work with phonegap. I am following the instructions on http://blog.daniel-kurka.de/2012/04/gwt-rpc-with-phonegap-revisited.html
PhonegapUtil.prepareService(service, ...
0
votes
1answer
231 views
gwt, rpc service, StatusCodeException, and no logs available
sorry if my english is bad.
I have a problem while calling one of my GWT services.
On the client side, I have the following error.
[ERROR] com.google.gwt.user.client.rpc.StatusCodeException: 500 ...
0
votes
1answer
102 views
GWT 404 Error on RPC
i have a problem with gwt and rpc. I implementet a Service for my rpc:
@RemoteServiceRelativePath("search")
public interface SearchService extends RemoteService {
List<Result> ...
1
vote
1answer
174 views
GWT RPC - Multiple RPC Services
I'm having the problem of splitting up a large RPC service into smaller chunks. I found the basics here GWT RPC - Multiple RPC Services Per App , but I'm struggling with the implementation. I can't ...
0
votes
2answers
97 views
Calling GWT RPC service
I have been going through the google tutorial ( which I find very good ) at
https://developers.google.com/web-toolkit/doc/latest/tutorial/RPC
I have the service up and running on my local server and ...
0
votes
2answers
121 views
GWT rpc failing - base url not what I expected
I am trying to become familiar with using the GWT api to create web based applications. I have been following some tutorials on GWT and have not yet been able to make an RPC call. Looking at the ...
0
votes
1answer
58 views
Is there a way not to expose a method to client side?
I’m using GWT 2.5, and RPC to exchange information between client and server.
I’m trying to define the interface that extends RemoteService and another one CRUDService<T> that has among others ...
5
votes
0answers
154 views
Job queue manager with RPC interface
I need a job queue manager that I can control over the Internet. It should be able to execute and stop processes, check on their status (ideally notice and execute some code when a process exits), ...
0
votes
2answers
63 views
GWT rpc call issues [closed]
I am trying to call a service method in my GWT + GAE project.
The call is as follows:
bloodDonorAdminService.approveBloodDonor(row, new AsyncCallback<String>(){
@Override
...
0
votes
2answers
68 views
GWT Ajax call without using RPC
I have a client side class that takes a long time to be constructed, specifically,
com.bradrydzewski.gwt.calendar.client.Calendar;
Is there a way I can pass off the construction of this class to an ...
1
vote
0answers
103 views
Gwt servlet dispatcher with EJB
I try to write a "servlet dispatcher" to call EJBs, like this article about Spring (I do NOT use Spring).
The aim is to avoid writing servlet with all implementation of the service interface, which ...
0
votes
1answer
138 views
GWT RPC method call fails without error message
In GWT application I have RPC interface. Some methods works fine (i.e. RemoeServiceServlet configured fine), but when I try to invoke another method, it always fails with onFailure() method. Ajax call ...
3
votes
1answer
136 views
Django gwt and rpc call
I'm using django, but I like to use it with gwt, well I've try using json with piston and works well, but I prefer using RPC call.
So I know that there's some rpc lib for django, but I'm confused ...
0
votes
1answer
132 views
GWT-RPC, Apache, Tomcat server data size checking
Following up on this GWT-RPC question (and answer #1) re. field size checking, I would like to know the right way to check pre-deserialization for max data size sent to server, something like if ...
1
vote
1answer
110 views
GWT RPC server side safe deserialization to check field size
Suppose I send objects of the following type from GWT client to server through RPC. The objects get stored to a database.
public class MyData2Server implements Serializable
{
private String ...
2
votes
1answer
125 views
GWT wait for setVisibleRangeAndClearData to finish
This a variant for the classic "wait rpc call problem" in GWT.
I have done a complete CRUD screen in GWT, calling RPC to atack an Oracle database. It has one panel for the search criteria and the ...
0
votes
3answers
108 views
How to kill a GWT RPC which has not yet completed
My code is for sending Emails to multiple users.User will click on send button,and rpc will be called. Now if user clicks on Cancel button .Ongoing rpc should be cancelled. . Can anyone help ?
I ...
0
votes
2answers
215 views
Exception while running GWT application
I have built my first GWT app. giving no compilation errors neither run-time errors. However, when the application is loaded into the browser (using Interner Explorer) and I enter username and ...
1
vote
1answer
279 views
Testing an asynchronous rpc
has someone here experiences with GWT SyncProxy? I try to test an asynchronous rpc, but the code under onFailure and onSuccess is not tested. Unfortunately there is no error log, but maybe someone ...
1
vote
1answer
281 views
GWT SyncProxy Testing
I create a new Web Application Project with the standard GWT example. Then i want to test the greetingserviceimpl with the following test class. I don't know where is the problem. I also upload the ...
0
votes
2answers
392 views
GWT RPC - Multiple RPC Services Per App
I am currently working with a GWT app that has one large RPC service. It has over 100 methods, all of which do different things. What kind of performance benefit / hindrance would I get if I split ...
-1
votes
2answers
125 views
Incompatible RemoteService Exception in Gwt?
During staring of a Smart Gwt component i got following error
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: Invalid type signature for
Can you please tell why this is ...
0
votes
3answers
186 views
Create a GWT RPC Service
I’m trying to create a backend for a homepage with GWT. I created a Google Web Application in Eclipse without sample code and now I would like to add the service, but the developer Google guide ...
1
vote
3answers
154 views
Multiple Page Development in Java with Eclipse and GWT
I have been writing some basic code for an application I am designing. I have learned the basics and gotten some simple database connection working with RPC calls etc. What I need to do now and am ...


