tags:

views:

43

answers:

2
+2  A: 

Binding parameters such as the buffer size do not automatically propagate from server to client when you create a service reference. You will have to adjust hem manually on the client side as well.

Was that the question? It's a little unclear to me what the problem is exactly.

Thorarin
The problem is that I put you web.config which is at server, but when I run Wcf Test Client (the tool from common7 in vs folder) I see different parameters. I'm not adding reference any client.
@phenevo: the title of your question is a little misleading then, but the same principle still holds. The binding parameters the server uses are not exposed to the client, so the client doesn't automatically use the same parameters.
Thorarin
I change the name of behaviorConfiguration, but I still see the previous name. I know that something is wrong , because when I use my winforms applicatio I get error when I try upload big(>10mb) file, but when I send small file everything is ok (1mb).
+1  A: 

I think Thorarin is right, some information can't be propagated to client from server. Checkout here http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/dde72fbe-e741-48fd-a9e1-253800d5227a

fra