If I had to guess, I would say that you're getting lag between when the translation request is sent to Google's servers and the response is received. The Translate API v2, in particular, is not as fast as the v1, and when it has to try to make sense of something which is, for all practical purposes, nonsensical, it takes longer. It's the nature of the beast.
jg On Sun, Oct 30, 2011 at 11:04 AM, Miles_Gibson <[email protected]>wrote: > I am using the latest V2 Google API's. Any real word gets translated > very well. However when I use the API's to translate "N U I D", the > call to the API goes no where and it hangs on the line. See below my > code: > > > Dim response As TranslationsListResponse > Dim srcText As String() > srcText = {pstrFromPhrase} > response = service.Translations.List(srcText, "es").Fetch() > ' process etc.. > > The API hangs when executing the Fetch() method. > > Any ideas?? > > TIA, > > Miles > > -- > You received this message because you are subscribed to the Google > Groups "Google AJAX APIs" group. > To post to this group, send email to > [email protected] > To unsubscribe from this group, send email to > [email protected] > To view this message on the web, visit > http://groups.google.com/group/google-ajax-search-api?hl=en_US > For more options, visit this group at > http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en > -- Jeremy R. Geerdes Generally Cool Guy Des Moines, IA If you're in the Des Moines, IA, area, check out Debra Heights Wesleyan Church! http://www.debraheightswesleyan.org -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] To view this message on the web, visit http://groups.google.com/group/google-ajax-search-api?hl=en_US For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
