I upgraded my project from gwt-1.5 to gwt-1.6 and updated my web.xml
file. Now I am running a "Error 404" problem after I get a warning :
"No file found for: /notamsearchpreference//searchService". I checked
my WEB-INF/class/myClient folder, the searchService.class was there.
here is the sample code how do I create the server:
public static SearchServiceAsync searchService = (SearchServiceAsync)
GWT
.create(SearchService.class);
static
{
ServiceDefTarget endpoint = (ServiceDefTarget) searchService;
String moduleRelativeURL = GWT.getModuleBaseURL()
+ "/searchService";
endpoint.setServiceEntryPoint(moduleRelativeURL);
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---