10
Answers

Exception when size is too big

Stefan Lehmann

Stefan Lehmann

12y
6.1k
1
Hello together,

i have a problem with my WCF Service when the size is to big. I get following exception:

Fehler beim Empfangen der HTTP-Antwort für http://localhost:52277/ServiceKalkulation.svc. Die Ursache kann sein, dass die Dienstendpunktbindung kein HTTP-Protokoll verwendet. Eine andere mögliche Ursache ist, dass der HTTP-Anforderungskontext vom Server abgebrochen wird (vermutlich auf das Herunterfahren des Diensts zurückzuführen). Weitere Informationen finden Sie in den Serverprotokollen.

Inner Exception: Von der Übertragungsverbindung können keine Daten gelesen werden: Eine vorhandene Verbindung wurde vom Remotehost geschlossen.

If i try to debug into my Wcf Service i see that it already fails before i get into my method of the Wcf Service.

This is the method the exception is thrown, but i never come in my "SaveLastVersion"-method, the exception is thrown before:
client.SaveLastVersion(lastV, dateiToByte);

Size of lastV: 23669380 (byte[23669380 ])
Size of dateiTByte: 3119608 ([byte[3119608])

I searched a long time but i cant get the right answer to solve my problem.

Thanks for helping!

Answers (10)