I'm really new to gwt,
I'm tasked to compile the gwt project into JS files and add the GWT Servlets and Javascript files inside another Java web-application (spring).
other than the js file generated by gwt I've also copied the server folder from the gwt project to the other project. also added the service servlet to web.xml
the client side is working fine.
I want to know usually what other configurations I have to set to make this work?
Thanks.
EDIT:
servlet mapping in web.xml
<servlet>
<servlet-name>applicationReportService</servlet-name>
<servlet-class>com.project.reports.gwt.server.service.rpc.applicationReportServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>applicationReportService</servlet-name>
<url-pattern>/reports/applicationReportService.svc</url-pattern>
</servlet-mapping>