RequestFactory is a component of the Google Web Toolkit that targets developers building data-oriented (CRUD) applications.

learn more… | top users | synonyms

0
votes
1answer
24 views

GWT RequestFactory and GWT Designer compatibility issue

I recently upgraded my project from GWT RPC to GWT RequestFactory, my UI uses alot DTO classes that was pure java classes, but now I upgrade them to entityproxy. Now gwt designer is complaining that ...
0
votes
0answers
31 views

java.lang.RuntimeException: The RequestFactory ValidationTool must be run

I have been bogged down by this whole day. I went through almost all the links available for this issue. I also followed the instructions on ...
0
votes
1answer
23 views

Method in RequestContext interface containing Map as return type

Am getting error while trying to do this. Am using gwt2.5 and requestfactory. My server class looks like this: public class RuleConfiguration { public static Map<Long, ...
0
votes
0answers
44 views

Appengine-datanucleus error on one to many fetch after server is restarted

I have a project where I have a user that has a list of pages as Entities. When I first create the user with the pages all the fetches work as expected, but after I restart the local_db.bin ...
1
vote
1answer
32 views

GWT Error: RequestFactory ValidationTool must be run

Everytime I launch my app I get the "RequestFactory Validation Tool must be run..." error even if listEmptyBoxes() is not executed. I already have file requestfactory-apt-2.5.0-rc1.jar on the ...
0
votes
0answers
54 views

ClassCastException in GWT cannot cast to java.util.List - requestFactory

Fri Apr 26 18:24:01 IST 2013 PollsAppLogger SEVERE: Ex caught 1 unwrapped java.lang.ClassCastException: ...
1
vote
1answer
27 views

RequestFactory Diff Calculation and 'static' find method

Am bit stuck by these three questions: 1) I see that diff is calculated in AutoBeanUtils's diff method. I saw a tag called parentObject in the entity which is used in the comparison to calculate ...
0
votes
1answer
35 views

Network payload is less in RF when entity proxies are used. But how to validate it?

My basic question in one line is: How to validate that only diff is sent across the browser in RequestFactory? Am stuck with that. Hope I can get it resolved. Description: I wrote a sample ...
1
vote
1answer
43 views

GWT RequestFactory - how to initialize it properly?

My GWT applications follow MVP pattern with singleton EventBus, and Display+Presenter bound together in Activity (with help of GIN): public class MyActivity implements Activity { @Inject MyDisplay ...
2
votes
2answers
50 views

How to handle server errors/exceptions in GWT 2.5 + RequestFactory and PostgreSQL?

Environment GWT 2.5 using RequestFactory EclipseLink 2.4.1 PostgreSQL 9.1 Problem To give context to the part of RequestFactory I'm looking at, I've inserted the structure of the snippet below: ...
0
votes
1answer
32 views

Using Proguard on App Engine Connected Android Client

I'm getting close to putting my app up on the Google Play store and I'm trying to obfuscate with Proguard. It uses GAE and the RequestFactory and I'm getting the 'RequestFactory Validation Tool must ...
1
vote
0answers
32 views

Difference between using Apache Ant java task with or without fork argument [duplicate]

I have following Ant target in my build file: <target name="RFValidate" description="runs RF annotation processor"> <java failonerror="true" fork="true" ...
2
votes
3answers
88 views

Upload files using GWT Request Factory

Is it possible to upload file via request factory? Simple example will be really helpful.
1
vote
0answers
44 views

Reusing the same ValueProxy for multiple RequestFactory calls

In my application, users can perform queries by filling some criteria (ValueProxy). As I am using an AsyncDataProvider (which uses a RequestFactory) and a Pager, multiple calls will be made as the ...
0
votes
1answer
45 views

Uncaught umbrella exception escaped

Please help me resolve this Umbrella exception http://pastebin.com/DACPRhbP NewUserPresenter file : http://pastebin.com/FZyAffu8 NewUserViewImpl file: http://pastebin.com/i6fYwnLH User Entity in ...
2
votes
3answers
80 views

GWT RF: How to share the same code in client and server

I would like to use the same code to sort and manipulate objects in client and server sides. But I am facing a problem since in client we need a proxy interface representing the class of the server. ...
0
votes
0answers
43 views

Getting 'Entity “XYZ” is already persistent' error while editing entity in GWT app

I am trying to edit a persisted entity in a GWT application. I am using JPA to query and edit the object. I am aware that when we query the object from Google datastore it is immutable and we need to ...
0
votes
0answers
45 views

GWT Requestfactory stalled after starting under Apache Tomcat 6.0.36 ( Linux )

Need someone to point me in the right direction with a problem related to GWT RequestFactory. Problem : GWT RF Project is working fine when launched under Eclipse (Windows) but when copying it on a ...
0
votes
3answers
84 views

FrontController with RequestFactory in GWT

I am using RequestFactory with GWT. It all working fine. I have a RequestContext interface that point to my DAO methodes. Now I want to implement some kind of security check before calling the DAO. ...
-1
votes
1answer
33 views

Login with GXT3 MPV Request Factory

I have a project with sencha gxt 3, and I do not know how to do authentication (Login) Please you, if you can help me with some examples. thank you.
2
votes
1answer
87 views

GWT blamed RequestFactory ValidationTool must be run on on sub module(project) when launching main project

GWT 2.5.0/Google Plugin for Eclipse/m2e/GWT-maven-plugin 2.5.0/Request Factory I configs my project according to the GWT wiki working with maven and it works pretty well, but has some trouble in my ...
0
votes
1answer
111 views

GWT polymorphic lists with @ExtraTypes

I have a little problem with a list that contains different types of elements and i would like to see if anyone of you have met the problem before. The issue should be solved with the use of ...
0
votes
3answers
52 views

RequestFactory exceptions for [Auto bean frozen] edited (mutable) Proxy when just shooting a read query

Let me just put the question in code: RPCRequest request = ClientFactory.getRPCRequest(); VenueProxy venue = request .create(VenueProxy.class); venue = request.edit(venue); ...
0
votes
0answers
77 views

GWT RequestFactory Guice EJB exception after redeploy from Idea to Glassfish

I use GWT RequestFactory with Guice injection of EJB services. Guice provides service locator for RequestFactory RequestContexts: public class AppServiceLocator implements ServiceLocator { ...
0
votes
0answers
38 views

How to Obtain Entity Identifiers in GWT?

When creating a new entity (in relational database terms a new row in a table) in a GWT application I need to provide a unique identifier for the new entity, and that identifier needs to be unique ...
0
votes
0answers
20 views

Comparing GWT RPC with GWT RequestFactory [duplicate]

I've recently implemented a couple of different fetching methods: One using GWT RPC. One using GWT RequestFactory. They do the same thing. Basically fetch a list of Categories that I add to a ...
3
votes
1answer
117 views

Using GWT RequestFactory on iOS devices

An Android app can use RequestFactories to access data from GWT applications. Thats a very simple and great solution. See http://code.google.com/p/cloud-tasks-io/ for more information. My Question: ...
0
votes
2answers
73 views

Hitting non-GWT servlet from GWT client-side

Let's say there is a 3rd party RESTful web service exposing a GET endpoint at: http://someservice.com/api/askAnyQuestion And I want to hit that service, placing my question on the query string: ...
9
votes
5answers
399 views

GWT hit HTTP servlet with RequestFactory

I want to use GWT's RequestFactory for all client-server communication, if possible. My understanding is that you have to map /gwtServlet to RequestFactoryServlet in your web.xml, and then use ...
0
votes
1answer
76 views

GWT RequestFactory: updates not propagated to cascaded object

I have an entity Company with a referenced object ItemVersion and I use JPA (eclipselink) as persistence layer. A code extract is given here: @Entity public class Company{ private String ...
0
votes
1answer
109 views

GWT requestfactory: How to catch the exception i thrown in Locator at server side?

At client side: factory.find(proxyId).fire(new Receiver<P>() { @Override public void onSuccess( P response ) { proxy = response; ... } @Override public ...
0
votes
1answer
65 views

RequestFactory process double jsr303 validation

i'm using gwt with RequestFactory and i want to use JSR303 validation, but the problem is when i call a method using requestFactory like add(object o) it calls the validation for each field 2 times, ...
3
votes
1answer
79 views

Client side entity proxies inheritance in GWT Requestfactoy

I use GWT 2.5 RequestFactory, Suppose at server side, I have A, B, C, D 4 entities, at client side, i have AProxy, BProxy,CProxy, DProxy corresponding to server side entities. B, C extends A. In D ...
2
votes
0answers
65 views

RequestFactory and outdated client data

I am currently working on a project that uses GWT on the client side, RequestFactory as the transport layer, and Apache Tomcat and Hibernate on the server side. The trouble I'm having involves a ...
2
votes
1answer
62 views

GWT requestfactory: can user fabricate the setter method of entity proxy?

I use request factory in my app, the client side proxy contain getter methods and some setter methods that user can modify, however for security reason, some of the setter methods is not exposed, I'd ...
0
votes
1answer
58 views

RequestFactory validation fails when including Android maps v2 fragment

I have successfully used RequestFactory for a very long time in my Android app, but now when trying to upgrade to maps v2, when I include <fragment ...
1
vote
1answer
101 views

GWT RequestFactory: How to use different request types in one method

I have defined two entities and the respective two request types in a derived RequestFactory. When I persist a single entity in a unit test it works fine. When I try to persist both entities within ...
0
votes
1answer
77 views

GWT RequestFactory logged user

I was searching for a complete simple example about logged user handling with GWT RequestFactory. I found that I have to catch the HTTPServletRequest (server-side) with a command like this: ...
0
votes
3answers
158 views

GWT RequestFactory Performance

I have a question regarding the performance of RequestFactory and GWT. I have a Domain Entity with 8 fields that returns around 1000 EntityProxies. The time between the request fires and it responds ...
1
vote
0answers
213 views

GWT RequestFactory with Set sub-collections

I have a little problem with RequestFactory regarding persistence of children collections in the shape of Set . I am using gwt 2.5 with requestfactory, and Hibernate4/Spring3 at the backend. I am ...
0
votes
1answer
54 views

GWT + Spring + Hiberante. With no reason at all

I'm learning how to integrate Spring with GWT and RequestFactory by doing this following example. I got a NullPointerException and I don't know why. Can anyone help me? Here is my code: @Repository ...
0
votes
1answer
94 views

Datanucleus - An error occurred trying to instantiate an instance JPAAdapter

my project is based on GWT(2.4) and my aim is to implement ReqyestFactory (JPA, Datanucleus, Postgresql). During the compilation I don't have any errors. But when I make request to the server I got ...
0
votes
0answers
110 views

GWT RequestFactory Open Session InView workaround

We have entities (top-entity) with sub-entities and can't use Open Session In View Filter because we modify entities in our service layer but we don't wan't those changes to be persistent. We persist ...
0
votes
1answer
90 views

Dataflow Gxt<->RequestFactory<->Server

Does anybody know or have a link to a simple CRUD-like example that demonstrates the interaction of GXT grid - store - requestfactory & EntityProxy. I already found some example applications, ...
1
vote
1answer
203 views

How to handle RollbackException caused by ConstraintViolationException with RequestFactory

I'm trying to implement a unique value constraint on a field using JPA and Hibernate with RequestFactory (GWT 2.5). My other constraints are implemented using JSR303 and I'd like to report violations ...
0
votes
1answer
61 views

GWT RequestFactory's EntityProxy security

This questions concerns the RequestFactory of GWT. If I would have a User object in my server domain that has a method getPassword(). And I create a UserProxy (extends EntityProxy) that doesn't have ...
0
votes
1answer
35 views

How does RequestFactory know what Android user is logged in

I have an Android app that successfully uses RequestFactory to manipulate Entities in AppEngine Datastore. In my AppEngine service, I want to use UserService userService = ...
-3
votes
1answer
76 views

gwt requestfactory view database

relating to the request factory in gwt. How / Where can I view the entity records in the database (without using any code)?
0
votes
2answers
109 views

gwt - requestfactory with datanucleus with jpa and rdbms

I’m trying to use GWT with RequestFactory and DataNucleus ( JPA with MySQL) but I can’t compile it. The error is very strange in a proxy class : UserProxy.java:12: Could not find domain method ...
1
vote
2answers
84 views

RequestFactory Nullpointer Exception with EntityProxy

I want to send Generic Objects throug the wire with RequestFactories. Because i want to test on the server what Class it is and return a value from Database for the requested class. For example i ...

1 2 3 4 5 7