Is there a way to reduce the Bandwidth taken By WCF? -
I'm a newbie in WCF; I am developing a client server application and my goal is to execute some arguments on the server every single second.
I made a small client to use net client binding for my WCF service because it is the most favorable method BW (I understand) because it uses binary encoding?
After the short tracing to be used, I came to know that when I call a single function which does not take any parameters and returns the size of the data sent to the server, it is 400 bytes !!
Is there any way to reduce this size? And if it does not make sense, then I have to develop my application using my sockets? (BW is a critical issue in my case)
PS
Is the 400-byte acceptable size for calling without any logic?
You can always do your own WCF transport / binding. Did you close all the unnecessary features on net-typing (e.g., security) when measuring 400 bytes?
Comments
Post a Comment