Basically, I've created a netTcpBinding WCF service with a method that returns a set of simple objects ranging from 500 to 50000 objects. These object contains some string, int and DateTime properties. I was trying to test the memory consumption after calling this method. I've noticed that when I perform the same test with the classic ASMX web service, the memory consumption is less in this case. What I understand is that messages in netTcpBinding WCF services are binary-encoded whereas they are XML-formatted in ASMX web services, so messages should be smaller in the former case. However, the messages returned from the netTcpBinding service are almost 2x the size of ASMX messages. Any idea why this is happening?
Messages returned from a netTcpBinding WCF service are larger than those returned from an ASMX web service
137 views Asked by Qusay Fadhel At
1
There are 1 answers
Related Questions in C#
- Add additional fields to Linq group by
- couldn't copy pdb file to another directory while consuming wcf web service
- Why are the aliases for string and object in lowercase?
- WPF MessageBox Cancel checkbox check
- Resolve object using DI container with object instance
- Creating a parametrized field name for a SELECT clause
- Does compiler optimize operation on const variable and literal const number?
- Get data from one form to another form in C#
- Writing/Overwriting to specific XML file from ASP.NET code behind
- Deleting Orphans with Fluent NHibernate
Related Questions in WEB-SERVICES
- couldn't copy pdb file to another directory while consuming wcf web service
- .net rest service with JSON string and consumed with java client
- How to send Rest GET request that contains "#" value in url parameters?
- Looking the Method that MANUALLY INSTALL PHP on OSX Yosemite
- How to use @queryparam when using array in Java
- How to accept cookies when using a webservice - Android?
- zend soap server reading xml attributes
- Web Service Error path property must set before calling the send method
- Error with kSOAP2
- JAX-RS service response is returning double fields without decimal places
Related Questions in WCF
- couldn't copy pdb file to another directory while consuming wcf web service
- Call wcf from android app
- WCF Service not accepting multiple body parameters
- Error in Calling some service in WCF Client
- WCF channel Factory caching
- How to convert a List<string> to an IEnumerable<ServiceReference.datatable> C# Silverlight WCF RIA Services LINQ to SQL
- WCF reusing types with inheritance - cannot generate client code
- System.ServiceModel.FaultException'1' Where might the error be?
- How to configure proxy address for multiple WCF-bindings at once?
- How pass XML from PHP to the Soap WCF service?
Related Questions in SOAP
- Java - How to send byte array on Soap Request?
- SoapClient in PHP 5.6 when using HTTPS emits warning with "key values mismatch"
- zend soap server reading xml attributes
- Multiple HTTP post requests to a web service from XML files
- Header in SOAPclient PHP
- Namespace for array field in node-soap client (Node.js)
- Generate clients for multiple WSDL files and place it in different package through Spring Gradle
- How pass XML from PHP to the Soap WCF service?
- Jira Soap Api Add Watchers
- java.lang.LinkageError: loader constraint violation when developing a SOAP plugin in JIRA
Related Questions in NETTCPBINDING
- WCF not handle 1000 call per second
- Getting IEnumerable<T> semantics with a NetTcpBinding WCF service?
- Closing WCF connections using a static/centralized class
- Messages returned from a netTcpBinding WCF service are larger than those returned from an ASMX web service
- WCF nettcp Callback not working when deployed
- WCF without IIS Service Not Starting for TCP on Intranet
- Catch-22 prevents streamed TCP WCF service securable by WIF; ruining my Christmas, mental health
- Can“t add header to MassTransit message from OperationContext?
- Is there any difference in hosting net.tcp wcf services under Windows 7 and Windows 2008 Server in IIS?
- WCF NetTcpBinding + Single Instance + Single Concurrency = Blocking/Dropping Calls?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
My understanding is that ASMX is HTTP based only using the SOAP protocol to transfer data, whereas WCF has multiple binding and transport options.
TCP/IP operates as a streamed connection between the WebService and the object consuming the WebService. TCP/IP will re-transmit any lost packets (all connections will have a few packets lost) which in-turn could cause the overall transmitted data to be greater.
See: http://msdn.microsoft.com/en-us/library/ms733769(v=vs.110).aspx
The question really lies in how you are calculating memory loss. Are you using the GC class or measuring the total size of the request headers?