Questions tagged [wcf-streaming]

21 questions
1
vote
1 answer

WCF Streamed Response is buffered after moving Config to code

i have client server app using net.tcp bindings with streamedResponse service, all WCF config has been defined in the app.config and all works fine with no problem, i had to remove the config from the client app and define them in code, nothing…
YazX
  • 444
  • 4
  • 12
1
vote
4 answers

WCF Stream.Read always returns 0 in client

I've spent most of my day trying to figure out why this isn't working. I have a WCF service that streams an object to the client. The client is then supposed to write the file to its disk. But when I call stream.Read(buffer, 0, bufferLength) it…
Marcus
  • 5,407
  • 3
  • 31
  • 54
1
vote
0 answers

WCF service to stream buffer frame by frame to all client

I am looking for a way to write a wcf service which stream frame by frame buffer to all client. I do not want to use soap envelops and make it possible to consume the same service from all platforms like windows, android and iPhone clients. I want…
sam18
  • 631
  • 1
  • 10
  • 24
0
votes
0 answers

WCF Service Error : Exception Details: System.Net.WebException: The remote server returned an error: (400) Bad Request

I created a web service to upload files over http but on my first try, it is failing. My web service is running on my local computer's IIS 7, under ASP.NET 4 Integrated App Pool. Here this is my web service's web.config;
tugberk
  • 57,477
  • 67
  • 243
  • 335
0
votes
1 answer

How to read streams in parallel at client from a WCF Service Method, without blocking each other?

I'm trying to create a download application, in which there would be four or more download queues using which a user can download files from the server. What would be best possible solution to accomplish this without letting the queues blocking each…
0
votes
1 answer

WCF Error on Streaming back to client callback using NetTcpBinding

I have a WCF service, using NetTcpBinding TransferMode.Streamed, I'm looking to stream back to client using its callback, but i get this exception on the line host.Open: Contract requires Duplex, but Binding 'NetTcpBinding' doesn't support it or…
Murhaf Sousli
  • 12,622
  • 20
  • 119
  • 185
1
2