Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3799010
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T13:39:56+00:00 2026-05-19T13:39:56+00:00

I have a WCF service which has one method returning a stream. [ServiceContract] public

  • 0

I have a WCF service which has one method returning a stream.

[ServiceContract]
public interface IService1
{
    [OperationContract]
    MyMessage Test();
}

Now, MyMessage is defined like this:

[MessageContract]
public class MyMessage
{
    public MyMessage(string file)
    {
        this.Stream = File.OpenRead(file);
        this.Length = Stream.Length;
    }

    [MessageHeader]
    public long Length;

    [MessageBodyMember]
    public Stream Stream;
}

Peachy.

The service has a streamed response, using basicHttpBinding. This is the binding configuration:

  <basicHttpBinding>
    <binding name="BasicStreaming"
             maxReceivedMessageSize="67108864" maxBufferSize="65536" transferMode="StreamedResponse" />
  </basicHttpBinding>

Now this is where things start to get interesting. When calling this service, the last byte is lost if i read the stream in a particular way. Here is the code illustrating the two different approaches:

        Service1Client client = new Service1Client();

        //this way the last byte is lost
        Stream stream1;
        var length = client.Test(out stream1);
        var buffer1 = new byte[length];
        stream1.Read(buffer1, 0, (int)length);
        File.WriteAllBytes("test1.txt", buffer1);
        stream1.Close();

        //here i receive all bytes
        Stream stream2;
        length = client.Test(out stream2);
        var buffer2 = new byte[length];
        int c = 0, b;
        while ((b = stream2.ReadByte()) != -1)
        {
            buffer2[c++] = (byte)b;
        }
        File.WriteAllBytes("test2.txt", buffer2);
        stream2.Close();

I am sure I’m missing something, but can anyone point out to me exactly why this is happening? The biggest problem is that in another service, whichever way i read the stream, i lose the last byte, but maybe by identifying the problem here I can solve that one too.

Technical details:

  • IIS 7.0
  • .NET 3.5
  • Basic HTTP Binding
  • Streamed response mode

Note: I have uploaded the project isolating the problem, so anyone can try it out: mediafire

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T13:39:56+00:00Added an answer on May 19, 2026 at 1:39 pm

    I don’t have an exact answer as to why this works (my brain isn’t fully engaged at the moment), however this DOES work:

    var buffer1 = new byte[length+2];
    stream1.Read(buffer1, 0, buffer1.Length);
    

    (and, yes, you end up with a buffer that’s too large. It’s just a starting point for further thinking)

    In testing I found +1 isn’t large enough, but +2 is.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WCF service which will be hosted under IIS. Now I have
I have a WCF Web Service which is referenced from a class library. After
I have created a simple wcf service which used the WCF Service Library template.
I have a C# WCF REST Service which allows the addition of a bookmark,
I have a WCF service that I have to reference from a .net 2.0
I have a WCF service hosted for internal clients - we have control of
I have a WCF service and I want to expose it as both a
I have a WCF service running on the IIS with a ServiceHostFactory. It's running
I have a WCF service, hosted in IIS 7.0 that needs to run database
I have a WCF service with the following configuration: <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name=MetadataEnabled>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.