I have a simple application (in the client package) in which I tried to create a simple registration form using the google web toolkit. I created a simple interface that takes as input the email and a password. When the user presses submit, I want to store the data in tha datastore. In the client package I also create the RegistrationService which extends RemoteService and the RegistrationServiceAsync.
In the server package, I have a class User and a RegistrationServiceImpl which contains the extends RemoteServiceServlet implements Registration Service.
In all services there is a function called addUser which I want to call when the submit button is pressed in order to store the infromation in the datastore.
My question is how can I do this?
submit.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
String email = textBoxUsername.getText();
String pass = "";
if(textBoxRepeatPass.getText().equals(textBoxPassword.getText())){
pass = textBoxRepeatPass.getText();
LoginUser user = new LoginUser(email, pass);
//Here I want use the addUser(user);
Window.alert("You have successfully registered");
}
else{
Window.alert("Please provide a new password");
textBoxRepeatPass.setText("");
textBoxPassword.setText("");
}
}
});
It does not allow me to initialise any of the services? Any examples?
Thanks in advance!