Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an windows phone 8 app and I am recording audio using Microphone successfully. I am uploading recorded stream into the server and the stream uploads well but unable play the uploaded file.

Server code :

public void SendAudio(string fileName, Stream audioStream)
    {

            using (FileStream fileStream = File.Create(@"C:\Hosting\" + fileName))
            {
                audioStream.CopyTo(fileStream);
            }
        }

Client Code :

// The stream object contains recorded audio. If I save the stream audio into local windows phone storage and playback, it is working successfully.

public void SendAudioFileToServer()
    {
        string fileName = "xyz.wav";

        string address = "http://localhost:4343/SendAudio/xyz.wav";

        HttpWebRequest request = HttpWebRequest.Create(address) as HttpWebRequest;

        request.Method = "POST";

        request.ContentType = "application/x-www-form-urlencoded";

        request.BeginGetRequestStream(new AsyncCallback(GetRequestStreamCallback), request);
    }




    private void GetRequestStreamCallback(IAsyncResult asynchronousResult)
    {

        HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;

        // End the operation
        Stream postStream = request.EndGetRequestStream(asynchronousResult);


        byte[] fileBytes = stream.ToArray();

        postStream.Write(fileBytes, 0, fileBytes.Length);

        postStream.Close();

        request.BeginGetResponse(new AsyncCallback(GetResponseCallback), request);

    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.