Tagged Questions

11
votes
4answers
6k views

WCF Chunking / Streaming

I'm using WCF and want to upload a large file from the client to the server. I have investigated and decided to follow the chunking approach outlined at ...
9
votes
5answers
4k views

Transferring large payloads of data (Serialized Objects) using wsHttp in WCF with message security

I have a case where I need to transfer large amounts of serialized object graphs (via NetDataContractSerializer) using WCF using wsHttp. I'm using message security and would like to continue to do so. ...
4
votes
1answer
155 views

Are there any libraries or samples for non-duplex WCF chunking?

I'm looking for a way of implementing a file transfer service over HTTPS which uses chunking to cope with intermittent connectivity loss and to reduce the large timeouts required by using Streaming. ...
3
votes
1answer
308 views

Is WCF Chunking Ready For Production Use?

Does anyone know what the status of WCF Chunking? Is it good for production use? Does anyone have any experience using the new WCF Chunking Channel in production? ...
2
votes
2answers
4k views

WCF chunk data with stream

HI, I neet to pass chunk data from WCF service to client. I have a table with 16 million records, and so, when the client requests data from that table i open a datareader to that table and serialize ...
1
vote
0answers
450 views

The contract operation 'DownloadStream' requires Windows identity for automatic impersonation

I recently changed my binding configurations to allow impersonation in my WCF service. By implementing this, I was required to use a buffered TransferMode.Buffered as opposed to streamed. While this ...
1
vote
1answer
1k views

How to calculate the optimum chunk size for uploading large files

Is there such a thing as an optimum chunk size for processing large files? I have an upload service (WCF) which is used to accept file uploads ranging from several hundred megabytes. I've ...
1
vote
1answer
567 views

WCF chunking/streaming - make it transparent for client

While developing WCF service i've faced problem of transferring large data as method params (> 4 Mb of raw size, not considering transfer/message overhead). The solution for this problem is to use ...
0
votes
0answers
79 views

Configuring ChunkingChannel via app.config

I downloaded the ChunkingChannelEx which is an extansion of the "basic" Chunking Channel. As the "basic" Chunking Channel has no built in support for configuration via app.config, the ...
0
votes
0answers
168 views

WCF Chunking : Use Session.IsInitiating/Session.IsTerminating or put xml metadata in MesageHeader?

Like so many others I want to exchange large files and meta data using WCF. I've come across the chunking example from Microsoft http://msdn.microsoft.com/en-us/library/aa717050.aspx#CommunityContent. ...
0
votes
2answers
601 views

Is the callback from WCF to ASP.NET possible?

I have a Web service hosted in IIS in different box and WCF service hosted in Windows service, in a different box.(N-tier approach). Here, Web service is a client for WCF service. The request to ...
0
votes
1answer
770 views

cancel stream request from WCF server to client

I posted about stream request here [wcf-chunk-data-with-stream]:http://stackoverflow.com/questions/853448/wcf-chunk-data-with-stream I solved that task but now when i close request in client part ...