How to communicate two modules in GWT
问题 I have created two module name module1 and module2 in gwt application. I want to pass message from module1 to module2 and module2 to module1 simultaneously after some seconds. I write the following code, but it gives me error unable to find module1.gwt.xml in classpath. public void onModuleLoad() { mainBus.fireEvent(new PingEvent("-----Simulation Started-----")); } module1 public void onModuleLoad() { GWTEventBus.mainBus.addHandler(PingEvent.TYPE, new PingEventHandler(){ public void onEvent