Re: Compiling servlet classes

2009-04-04 Thread m...@gmail.com
Hi Sumit, Thomas, Thank you both for your explanations : that's ok now ! Cheers, Mathieu On 1 avr, 20:22, Sumit Chandel sumitchan...@google.com wrote: Hi Mathieu, Please follow Thomas' advice in his last post. I must have been sleep typing that night :-) Cheers, -Sumit Chandel On Wed,

Re: Compiling servlet classes

2009-04-01 Thread m...@gmail.com
Hi Sumit, I didn't forget to include the gwt-servlet.jar in the javac classpath, that's why I'm surprised of this error... Thanks ! Mathieu On 1 avr, 04:41, Sumit Chandel sumitchan...@google.com wrote: Hi Mathieu, Make sure you have the gwt-servlet.jar added to the javac classpath as well.

Re: Compiling servlet classes

2009-04-01 Thread Thomas Broyer
On 1 avr, 08:09, m...@gmail.com mathieu.eveill...@gmail.com wrote: Hi Sumit, I didn't forget to include the gwt-servlet.jar in the javac classpath, that's why I'm surprised of this error... Er, gwt-servlet does *not* include the javax.servlet classes (it's meant do be deployed in your

Re: Compiling servlet classes

2009-04-01 Thread Sumit Chandel
Hi Mathieu, Please follow Thomas' advice in his last post. I must have been sleep typing that night :-) Cheers, -Sumit Chandel On Wed, Apr 1, 2009 at 2:24 AM, Thomas Broyer t.bro...@gmail.com wrote: On 1 avr, 08:09, m...@gmail.com mathieu.eveill...@gmail.com wrote: Hi Sumit, I didn't

Re: Compiling servlet classes

2009-03-31 Thread m...@gmail.com
Hi Sumit, Thank you very much for answering my question ! You were right ! Now I have one more error left when compiling : cannot access javax.servlet.http.HttpServlet Have you any idea about this ? Thanks a lot Mathieu On 31 mar, 02:09, Sumit Chandel sumitchan...@google.com wrote: Hi

Re: Compiling servlet classes

2009-03-31 Thread Sumit Chandel
Hi Mathieu, Make sure you have the gwt-servlet.jar added to the javac classpath as well. This is needed since the service implementation extends the RemoteServiceServlet (HttpServlet subclass). Hope that helps, -Sumit Chandel On Tue, Mar 31, 2009 at 12:29 PM, m...@gmail.com

Re: Compiling servlet classes

2009-03-30 Thread Sumit Chandel
Hi Mathieu, The GWT RPC servlet class implements its client-side service interface. For this reason, when you're trying to javac the servlet class you will need to make sure that the client-side service interface is also on the classpath. Try compiling with the service interface on the classpath

Compiling servlet classes

2009-03-26 Thread m...@gmail.com
Hi, I'm a new java and GWT programmer. I'm trying to build a GWT Hello World using an RPC. I've tried to compile my servlet class (the service implementation) with javac, but the error message says it's impossible to find the client-side package (the service) ... Could you please explain me how