*/
protected void initServices() {
schoolService = (GWTSchoolServiceAsync) GWT
.create(GWTSchoolService.class);
ServiceDefTarget endpoint = (ServiceDefTarget) schoolService;
String pre = Interactive.getRelativeURL("service/");
endpoint.setServiceEntryPoint(pre + "schoolService");
userService = (GWTUserServiceAsync) GWT
.create(GWTUserService.class);
ServiceDefTarget endpointUser = (ServiceDefTarget) userService;
endpointUser.setServiceEntryPoint(pre + "userService");
if (schoolService == null || userService == null) {
Log.error("Service was null.");
}