Re: My GWT Ant task wont find my remote service

2008-12-13 Thread José
Thank you Eric for the tip. I'll try that and let you know if it fixes my problem, I think it should. The way GWT shell works is rather unusual, I had troubles getting sources from another Eclipse project than my GWT one. José On 13 déc, 00:54, Eric Ayers wrote: > Wait, I think I know what's go

Re: My GWT Ant task wont find my remote service

2008-12-12 Thread Eric Ayers
Wait, I think I know what's going on. When you run in Eclipse, it is compiling all the java source to .class files and putting them . I'll bet that is not the \bin directory you've specified in your classpath in your ant script or your .bat file. To fix the problem, you need to compile the java

Re: My GWT Ant task wont find my remote service

2008-12-12 Thread Eric Ayers
Do you have a tag in Om.gwt.xml? On Dec 11, 4:20 am, José wrote: > Hello all, > > I'm trying to set up an Ant task to run my GWT applications. > > The layout of my toy-app looks like this : > src/org/om/ > client/ > model/ClientUser.java [the class of the bean sent by my remote > s

My GWT Ant task wont find my remote service

2008-12-11 Thread José
Hello all, I'm trying to set up an Ant task to run my GWT applications. The layout of my toy-app looks like this : src/org/om/ client/ model/ClientUser.java [the class of the bean sent by my remote service] service/user/RpcUserService.java [interface of the service] s