Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
You're trying to use a server function in the code which will execute on the client. – Boris Brudnoy Dec 18 '12 at 20:31
I am asking what is the correct way to do it? – girl Dec 18 '12 at 21:10
As long as you understand the difference between client Java code and server Java code in GWT I think it's all pretty well explained in the Actually Making a Call section of the Dev. Guide. – Boris Brudnoy Dec 18 '12 at 21:18

closed as not a real question by Jarrod Roberson, Mario, false, Jon Lin, ACB Dec 19 '12 at 0:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.