Я думаю, что у меня неправильная конфигурация моих файлов XML для моего проекта GTW, потому что, когда я пытаюсь связаться с удаленной службой, я получаю эту ошибку: " Проблема с доступом / myresults / compress. Причина: NOT_FOUND ",Ниже приведены важные части моего кода, если кто-то может мне помочь, я думаю, что он связан с RemoteServiceRelativePath и моим XML.
ОБНОВЛЕНИЕ: Когда я изменяю в файле web.xml содержимоеURL-ШАБЛОН Я по-прежнему получаю точно такое же сообщение с путем /myresults/compress.
CompressionService.java
package myProject.client;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
/* The client side stub for the RPC service. */
@RemoteServiceRelativePath("compress")
public interface CompressionService extends RemoteService {
String compress(String name) throws IllegalArgumentException;
}
CompressionServiceImpl.java
package myProject.server;
import myProject.client.CompressionService;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;
/* The server side implementation of the RPC service. */
public class CompressionServiceImpl extends RemoteServiceServlet implements
CompressionService {
public String compress(String input) throws IllegalArgumentException {
String output = "aaaa";
return output;
}
}
CompressionService.java
package myProject.client;
import com.google.gwt.user.client.rpc.AsyncCallback;
/* The async counterpart of <code>CompressService</code> */
public interface CompressionServiceAsync {
void compress(String input, AsyncCallback<String> callback)
throws IllegalArgumentException;
}
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<servlet>
<servlet-name>compressionService</servlet-name>
<servlet-class>myProject.server.CompressionServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>compressionService</servlet-name>
<url-pattern>/myresults/compress</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>MyResults.html</welcome-file>
</welcome-file-list>
</web-app>
MyResults.gwt.xml
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='myresults'>
<inherits name='com.google.gwt.user.User'/>
<inherits name='com.google.gwt.user.theme.clean.Clean'/>
<entry-point class='myProject.client.MyResults'/>
<source path='client'/>
<source path='shared'/>
</module>
MyResults.java
private final CompressionServiceAsync compressionService = GWT.create(CompressionService.class);
compressionService.compress(text, new AsyncCallback<String>() {
public void onFailure(Throwable caught) {
// Show the RPC error message to the user
download.setText(caught.getMessage()));
}
public void onSuccess(String result) {
download.setText(result);
}
});