Hi,
the situation is:
@Service(value = PersonManager.class, locator =
InjectingServiceLocator.class)
public interface PersonRequest extends RequestContext {
Request<Void> persist(PersonProxy personProxy);
}
PersonRequest firstRequest = requestfactory.getPersonRequest();
PersonRequest secondRequest = requestfactory.getPersonRequest();
.....
PersonProxy personProxy = firstRequest.create(PersonProxy.class);
personProsy.setName("John");
......
secondRequest.persist(personProxy).fire();
.....
As a result, all properties of the parameter person in the
personManager.persist(Person person) are null.
Why that happens?
Is there any solution?
Regards, Mihail Lesikov
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.