c# - Speech recognition in Windows Phone 8 -


following this tutorial doing sample program of speech recognition in wp8.i code like:

public async void speechtotext_click(object sender, routedeventargs e) {   speechrecognizerui speechrecognition=new speechrecognizerui();   speechrecognitionuiresult recoresult=await speechrecognition.recognizewithuiasync();  if (recoresult.resultstatus == speechrecognitionuistatus.succeeded)   {     messagebox.show(string.format("you said {0}.", recoresult.recognitionresult.text));   } } 

after running program,i face message "we're sorry can't access network right now" said voice.
internet connection needed it?i check internet connection good,so what's problem there,can explain?is emulator problem or missing something?

speech recognition requires access microsoft cloud services. many people have problems getting emulator work internet enabled apps. here's msdn article on troubleshooting issue. if i'd verify can access internet on emulator using simple webbrowser , trying navigate site of choosing. if aren't able access external site, voice recognition not work on emulator.


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -