vote up 1 vote down star

How to Send Large File From Client To Server Using WCF in C#? Below the configuration code.

<system.serviceModel>
    <bindings>
        <basicHttpBinding>
        	<binding name="HttpStreaming_IStreamingSample" 
                         maxReceivedMessageSize="67108864"
                          transferMode="Streamed">
        	</binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint 
            address="http://localhost:4127/StreamingSample.svc"
            binding="basicHttpBinding" 
            bindingConfiguration="HttpStreaming_IStreamingSample"
            contract="StreamingSample.IStreamingSample" 
            name="HttpStreaming_IStreamingSample" />
    </client>
</system.serviceModel>
flag
OK,this is the client config. Please also show server config, and the service contract (what does your method look like that you're calling?) – marc_s Oct 6 at 11:25

2 Answers

vote up 2 vote down

You can take a look at WCF Streaming feature.

link|flag
vote up 1 vote down

You need to check out streaming, as Dzmitry already pointed out.

In order to be able to send large files as a stream to your service, you'll need to:

  • create a service method that accepts a Stream as its input parameter
  • create a binding configuration (on both the server and the client) which uses transferMode=StreamedRequest
  • create a stream in your client and send it to the service method

So first off, you need a method in your service contract:

[ServiceContract]
interface IYourFileService
{
   [OperationContract]
   void UploadFile(Stream file)
}

Then you need a binding configuration:

<bindings>
  <basicHttpBinding>
    <binding name="FileUploadConfig"
             transferMode="StreamedRequest" />
  </basicHttpBinding>
</bindings>

and a service endpoint on your service using that binding configuration:

<services>
  <service name="FileUploadService">
     <endpoint name="UploadEndpoint"
               address="......."
               binding="basicHttpBinding"
               bindingConfiguration="FileUploadConfig"
               contract="IYourFileService" />
  </service>
</services>

and then, in your client, you need to open e.g. a filestream and send that to the service method without closing it.

Hope that helps!

Marc

link|flag
Thanks for the post. I have already tried this,but it throws the following exception "The remote server returned an error: (400) Bad Request" – Charan Oct 5 at 12:21
that sounds like something with your config is not okay - can you post client and server config that you have now in your original questions? Just the <system.serviceModel> sections. Thanks! – marc_s Oct 5 at 12:29
<basicHttpBinding> <binding name="HttpStreaming" maxReceivedMessageSize="67108864" transferMode="Buffered"> </binding> </basicHttpBinding> <service name="WCFFileStreamingDemo.StreamingSample" behaviorConfiguration="WCFFileStreamingDemo.StreamingSampleBehavior"> <endpoint address="" binding="basicHttpBinding" bindingName="HttpStreaming" contract="WCFFileStreamingDemo.IStreamingSample"> </endpoint> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> </service> – Charan Oct 5 at 14:40
hi Marc, the above is the config code – Charan Oct 5 at 14:41
i have added config code in the question – Charan Oct 6 at 9:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.