Rebind result 'suglasnost.client.UnosServiceAsync' must be a class

2008-11-21 Thread Veljko
' [ERROR] Line 62: Rebind result 'suglasnost.client.UnosServiceAsync' must be a class [ERROR] Cannot proceed due to previous errors [ERROR] Build failed Here is main class: public class UnosApp implements EntryPoint { public void onModuleLoad() { ... Object obj=GWT.create(UnosServiceAsync.class

Re: Rebind result 'suglasnost.client.UnosServiceAsync' must be a class

2008-11-21 Thread Veljko
The problem was in main class, should be: public class UnosApp implements EntryPoint { public void onModuleLoad() { ... Object obj=GWT.create(UnosService.class); ... On 21 stu, 16:20, Veljko [EMAIL PROTECTED] wrote: Here is main class: public class UnosApp implements EntryPoint {