Hello,
I am developing a silverlight application, where I make use of webservices. The server is responsible for processing some text, get the phoneme info, convert to visemes, generate the audio and encode to mp3. A list of visemes and a path to the create audio file is returned. Then the audio is streamed to the client.
But now, I have a problem. I need for the server to wait for complete audio encoding creation. Sometimes, the audio is not ready, and it does not stream for the client. I 've tried thread.join but it has the same problem for long texts.
How should be the best way to resolve this issue ?
Thanks in advance