Click here to Skip to main content
15,881,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Everyone,

I am trying to work with the Entered Text will be converted to Speech.I have a wsdl file and I created one web service with that.I able to call the SayAsync method by giving all parameter included with text but after my call to SayAsync it is not returning any result from objHttpBinding_SayCompleted and it is showing following error

Here is Error Message:

Target Invocation exception was unhandled by user code

An exception occurred during the operation, making the result invalid. Check InnerException for exception details.

Here is Stack trace:

MSIL
at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
at WebReference.SayCompletedEventArgs.get_Result() in c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\texttospeechapplication\4cb933da\99300144\App_WebReferences.gyocm7dd.0.cs:line 990
at TextToSpeech.objHttpBinding_SayCompleted(Object sender, SayCompletedEventArgs e) in d:\MeeraMadhuri\SpeechApplication\TextToSpeech.aspx.cs:line 49
at WebReference.VFHTTPBinding.OnSayOperationCompleted(Object arg) in c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\texttospeechapplication\4cb933da\99300144\App_WebReferences.gyocm7dd.0.cs:line 387
at System.Web.AspNetSynchronizationContext.CallCallbackPossiblyUnderLock(SendOrPostCallback callback, Object state)



Here is My code:

C#
protected void btnvoice_Click(object sender, EventArgs e)
    {
        try
        {
            VFHTTPBinding objHttpBinding = new VFHTTPBinding();
            objHttpBinding.SayCompleted += new SayCompletedEventHandler(objHttpBinding_SayCompleted);
            objHttpBinding.SayAsync("sssssssss", objTextInfo, objvoiceinfo, objaudioinfo);
        }
        catch
        {
        }
    }
    private void objHttpBinding_SayCompleted(object sender, SayCompletedEventArgs e)
    {
        lblmessage.Text = e.Result.ToString();
    }


Is there any wrong with my code ,Thanks in advance if any can reply...
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900