I used System.Speech for generation voice messages. Also I user third party commercial voice (Hebrew language)
Here is my code:
using (var ss = new SpeechSynthesizer())
{
ss.SelectVoice("Aharon Ron");
ss.SetOutputToWaveFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "2.wav"));
ss.Speak("שלום");
}
If I run it from Visual Studio IIS Express first time I get voice activation window Activation window image
If I try to use it on real server with IIS 8. I can't to see that window and I can't to activate voice. How I can to show the window from IIS process?
P.S. I sent request to voice producer support, but I did not get response yet.