Hello again,

I want to try the functionalities I've added to the application in a
real Tomcat server, basically for testing and performance
benchmarking. I have read the GWT deploying guide, but it was of no
help, since I have two modules and each has RPC, so I didn't figure
out a way of making a functional WAR file.

Here's my schematic file structure. Maybe you can help me with the
web.xml configuration.

com.hads.bizalokud.login
com.hads.bizalokud.login.client
Login.java
(Other client side classes)
com.hads.bizalokud.login.server
LoginServiceImpl.java
com.hads.bizalokud.login.public
(All the public stuff)

com.hads.bizalokud.main
com.hads.bizalokud.main.client
Main.java --> I use the Login module inside this module Login l = new
Login();
com.hads.bizalokud.main.server
MainServiceImpl.java
com.hads.bizalokud.main.public

On both service interfaces I used the following:

Code:
@RemoteServiceRelativePath("MainService")
public interface MainService extends RemoteService {


Code:
@RemoteServiceRelativePath("LoginService")
public interface LoginService extends RemoteService {


Given that file structure, I tried the following.
1. Copied the Compile/Browse output to a new folder called Bizalokud
(the name of the application)
2. Then Made the WEB-INF/ WEB-INF/lib WEB-INF/web.xml
3. Copied gwt-server.jar and mysql-connector.jar to WEB-INF/lib
4. And then... started filling the web.xml but I didn't figure out a
way to make it work.

Thanks in advance. Help will be very appreciated.

Bye.

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