SimplifiedSpellCheckStub stub = new SimplifiedSpellCheckStub();
DoSpellingSuggestions suggestions = new DoSpellingSuggestions();
suggestions.setPhrase(word);
DoSpellingSuggestionsResponse response = stub.doSpellingSuggestions(suggestions);
String suggestion = response.get_return();
if (suggestion == null) {
observer.update("No suggestions found for " + word);
} else {