Hie

I am getting this while switching from one module to another via code like:
Please advise

 Button login = new Button("Login",  new ClickHandler() {
          public void onClick(ClickEvent event) {
          loginModuleService.doLogin(userName.getText(),
          password.getText(),
          userType.getValue(userType.getSelectedIndex()), new
AsyncCallback<Boolean>(){

@Override
public void onFailure(Throwable caught) {
 CommonUi.showServerErrorPopup(caught);
}

@Override
 public void onSuccess(Boolean result) {
if(result.booleanValue() == false){
 Window.alert("Login failed!!!. Please retry");
}else
 Window.Location.replace("/ui/page/AdminDashboard.jsp?gwt.codesvr=
127.0.0.1:9997");
 }});
            }
          });

23:40:15.794 [ERROR] [vik.sakshum.sakshumweb.AdminModule] Unable to load
module entry point class vik.sakshum.sakshumweb.client.AdminDashBoard (see
associated exception for details)
com.google.gwt.user.client.rpc.ServiceDefTarget$NoServiceEntryPointSpecifiedException:
Service implementation URL not specified
    at
com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.doPrepareRequestBuilderImpl(RemoteServiceProxy.java:319)
    at
com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.doInvoke(RemoteServiceProxy.java:258)
    at
vik.sakshum.sakshumweb.client.service.AdminDashBoardService_Proxy.getUserName(AdminDashBoardService_Proxy.java:34)
    at
vik.sakshum.sakshumweb.client.AdminDashBoard.onModuleLoad(AdminDashBoard.java:29)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:369)
    at
com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:185)
    at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:380)
    at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:222)
    at java.lang.Thread.run(Thread.java:619)
Thankx and Regards

Vik
Founder
www.sakshum.com
www.sakshum.blogspot.com

-- 
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.

Reply via email to