2

So, I'm new to GWT and I've just installed the plugin. I had all the dependency problems in the Universe (Since, apparently, all the real stuff does not come with the plugin), so I've downloaded GWT manually and added all the jars, and I've just created a new Maven/GAE/GWT/Whatever GWT project (Which was the only option available), and...... It does not work. I can't find GWTServiceAsync anywhere, not even in official docs. So, how can I import it?

enter image description here

Ericson Willians
  • 7,606
  • 11
  • 63
  • 114

1 Answers1

1

It seems you directly using the names of the interface by seeing in examples.

You need to create those client side and server side interface and the corresponding implemented class as well.

If you are not understanding what I speaking, here is a complete example to create an RPC.

How to make an GWT server call(GWT RPC?)

Community
  • 1
  • 1
Suresh Atta
  • 120,458
  • 37
  • 198
  • 307