public void doSyncSpellingSuggestion(String word) {
try {
SimplifiedSpellCheckStub stub = new SimplifiedSpellCheckStub();
DoSpellingSuggestions suggestions = new DoSpellingSuggestions();
suggestions.setPhrase(word);
DoSpellingSuggestionsResponse response = stub.doSpellingSuggestions(suggestions);
String suggestion = response.get_return();
if (suggestion == null) {