Hi

Just to understand better.... Are you still using eclipse?

If you are then it is already compiled.
Usually you can find the compiled version of your server class in

bin(or wherever you told eclipse to compile to)
    |_path_to_xxxxServiceImpl.class (net/tutorial/server/servlets/) <--
example

take that class and place it in your www/directory/ WEB-INF/classes/
path_to_xxxxServiceImpl.class
example:

www/directory/ WEB-INF/classes/net/tutorial/server/servlets/
xxxxServiceImpl.class

That should get you up and going.
HTH
:)


On Oct 20, 2:09 pm, jbroquefere <[EMAIL PROTECTED]>
wrote:
> Hello,
> i have terminated my project, which runs under Eclipse. In that
> project, i use a servlet, which connect to MySQL with JDBC.
> Well, everything works fine.
> Now, i want to deploy it. So i have use my <project>-compile file. I
> get my www/ directorie.
> Tomcat is well installed here.
> I now have to compile my MotServiceImpl.java.
> Im not used about the javac, mainly the CLASSPATH.
> when i type javac MotServiceImpl.java, i get a lot of errors, cause no
> package are found.
> Even if i put all the GWT jar files into my current dir, and even if i
> type
> javac -cp ../client/* MotServiceImpl.java
> the idea is that i tell javac to go ../client to find my packages, but
> still the same error :
> MotServiceImpl.java:13: package
> com.google.gwt.sample.stockwatcher.client does not exist
>
> (yeah, i have create my project using the stockwatcher tutorial
> example).
>
> I suppose all my problems are into the CLASSPATH, but im used to
> Eclipse, run as, ...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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