猿问

Webservice不响应

我用System.Speech.Synthesis做一个网络语音合成的Webservice,服务端的代码如下:

[WebMethod]
        public bool tts(string txt, string fileName)
        {
            bool result = false;
            fileName = @"C:\Inetpub\NXUTTS\" + fileName;
            Speach _speach = new Speach();
            _speach.SelectVoice("VW Lily");
            if (txt != string.Empty && fileName != string.Empty)
            {
                _speach.SpeakOutFile(txt, fileName);
                result = true;
            }
            _speach.Dispose();
            return result;
        }

运行后,语音文件正常合成,但是新弹出的页面一直假死,不结束。


幕布斯6054654
浏览 482回答 2
2回答

桃花长相依

没有遇到过;自己调试试试;
随时随地看视频慕课网APP
我要回答